]> git.plutz.net Git - serve0/blob - templates/list.html.sh
full page list for pagination, playctl in listview
[serve0] / templates / list.html.sh
1 # Copyright 2014 - 2016 Paul Hänsch
2 #
3 # This file is part of Serve0
4
5 # Serve0 is free software: you can redistribute it and/or modify
6 # it under the terms of the GNU Affero General Public License as published by
7 # the Free Software Foundation, either version 3 of the License, or
8 # (at your option) any later version.
9
10 # Serve0 is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU Affero General Public License for more details.
14
15 # You should have received a copy of the GNU Affero General Public License
16 # along with Serve0  If not, see <http://www.gnu.org/licenses/>. 
17
18 cat <<EOF
19   <form class="panel" id="search" action="?" method="get" accept-charset="UTF-8">
20     <input type="text" name="s" value="$search" placeholder="Search">
21
22     <select class="order" size="1" name="o" id="o1">
23       <option class="label" selected disabled>Order by</option>
24       <option>Name</option>
25       <option>Date</option>
26       <option>Length</option>
27     </select>
28     <!-- input type="submit" name="submit" value="Find" -->
29
30     <a class="panel clearsearch" href="?">Clear All</a>
31     <a class="panel toggle" href="#advfilter">Advanced</a>
32     <a class="panel toggle" href="#playctl">Player</a>
33
34     <div class="pagination_nav">
35       <label>Page:</label>
36       $(seq 1 $pagecount \
37         | while read pn; do
38           plink="$(($pn * $pagesize - $pagesize + 1))"
39           printf '<a %s href="?%spn=%s">%s</a>\n' "$([ $plink = $page ] && printf class=current)" "$page_link" "$plink" "$pn"
40         done
41        )
42     </div>
43   </form>
44
45   <div class="panel" id="playctl">
46      <a class="panel toggle" href="#">Hide</a>
47      <form action="?action=playctl" method="post">
48        <button type="submit" name="seek" value="-60">&lt;&lt;&lt;</button>
49        <button type="submit" name="seek" value="-10">&lt;&lt;</button>
50        <button type="submit" name="ctl" value="stop">&#x25a0;</button>
51        <button type="submit" name="ctl" value="pause">|| / &#x25b6;</button>
52        <button type="submit" name="seek" value="+10">&gt;&gt;</button>
53        <button type="submit" name="seek" value="+60">&gt;&gt;&gt;</button>
54        <br>
55        <button type="submit" name="amp" value="off">Amp Off</button>
56        <button type="submit" name="amp" value="on">Amp On</button>
57        <br>
58        $(for n in $(seq 0 5 100); do
59          printf '<button class="%s" type="submit" name="vol" value="%s">&nbsp;</button>' "$([ "$volume" = "$n" ] && printf selected)" "$n"
60        done)
61        <br>
62        <button type="submit" name="osd" value="progression">Progress</button>
63      </form>
64   </div>
65
66
67   <form action="?action=multitag&${page_this}" method="post" accept-charset="UTF-8">
68     <ul id="thumblist">
69       $(thumblist)
70     </ul>
71     $(. $_EXEC/templates/tagger.html.sh)
72   </form>
73
74   <div class="panel" id="foot">
75     <a class="panel toggle" href="#tagger">Add Tags</a>
76     <a class="panel toggle" href="#preferences">Preferences</a>
77     <a class="panel treeview" href="?p=tree">Browse Folders</a>
78
79     <div class="pagination_nav">
80       <label>Page:</label>
81       $(seq 1 $pagecount \
82         | while read pn; do
83           plink="$(($pn * $pagesize - $pagesize + 1))"
84           printf '<a %s href="?%spn=%s">%s</a>\n' "$([ $plink = $page ] && printf class=current)" "$page_link" "$plink" "$pn"
85         done
86        )
87     </div>
88   </div>
89
90   $(. $_EXEC/templates/preferences.html.sh)
91   $(. $_EXEC/templates/advfilter.html.sh)
92 EOF
93
94 # vi:set filetype=html: