aboutsummaryrefslogtreecommitdiff
path: root/templates/settings.html
blob: f8423fc2753c7f9defc286d21cc551064c7942e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{{template "layout.html" .}}
{{define "title"}} {{.Title}} {{end}}
{{define "content"}}
<form action="/settings/", method="post">
    <div class="field">
        <div class="control">
            <label class="checkbox">
                <input type="checkbox" id="showMode" name="showMode" {{if .Data.ShowMode}}checked{{end}}>
                Show File Modes
            </label>
        </div>
    </div>
    <div class="field">
        <div class="control">
            <label class="checkbox">
                <input type="checkbox" id="showOwner" name="showOwner" {{if .Data.ShowOwner}}checked{{end}}>
                Show File Owner
            </label>
        </div>
    </div>
    <div class="field">
        <input class="button" value="save" type="submit">
    </div>
</form>
{{end}}