aboutsummaryrefslogtreecommitdiff
path: root/templates/settings.qtpl
blob: 9d6c87e50d2ac2cb32bc130f701963c1ff4bfd00 (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{% import "git.sr.ht/~gabrielgio/img/pkg/database/repository" %}

{% code
type SettingsPage struct {
    Settings *repository.Settings
    Users    []*repository.User
}
%}

{% func (p *SettingsPage) Title() %}Settings{% endfunc %}

{% func (p *SettingsPage) Content() %}
<div>
    <h1 class="title text-size-1">Medias</h1>
    <form action="/settings", method="post">
        <div class="field">
            <div class="control">
                <label class="checkbox text-size-2">
                    <input type="checkbox" id="showMode" name="showMode" {% if p.Settings.ShowMode %}checked{% endif %}>
                    Show File Modes
                </label>
            </div>
        </div>
        <div class="field">
            <div class="control">
                <label class="checkbox text-size-2">
                    <input type="checkbox" id="showOwner" name="showOwner" {% if p.Settings.ShowOwner %}checked{% endif %}>
                    Show File Owner
                </label>
            </div>
        </div>
        <div class="field">
            <div class="control">
                <label class="checkbox text-size-2">
                    <input type="checkbox" id="preloadVideoMetadata" name="preloadVideoMetadata" {% if p.Settings.PreloadVideoMetadata %}checked{% endif %}>
                    Preload video metadata
                </label>
            </div>
        </div>
        <div class="field">
            <input class="button" value="save" type="submit">
        </div>
    </form>
</div>
<div>
    <h1 class="title text-size-1">Users</h1>
    {% for _, user := range p.Users %}
    <div class="panel-block field">
        <div class="columns wide-column is-gapless is-mobile">
            <div class="column text-size-2">
                {%s user.Username %}
            </div>
            <div class="column text-size-2">
                {%s user.Path %}
            </div>
            <div class="column  has-text-right"><a href="/users?userId={%s FromUInttoString(&user.ID) %}">Edit</a> <a href="/users/delete?userId={%s FromUInttoString(&user.ID) %}" class="is-danger">Delete</a></div>
        </div>
    </div>
    {% endfor %}
    <div class="field">
        <a href="/users" class="button">create</a>
    </div>
</div>
{% endfunc %}

{% func (p *SettingsPage) Script() %}
{% endfunc %}