chiark / gitweb /
exercise the C client a bit from tests
[disorder] / templates / search.html
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
2 <!--
3 This file is part of DisOrder.
4 Copyright (C) 2003, 2004, 2005 Richard Kettlewell
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
19 USA
20 -->
21 <html>
22  <head>
23 @include:stdhead@
24   <title>@label:search.title@</title>
25  </head>
26  <body>
27 @include{@label{menu}@}@
28    <h1 class=title>@label:search.title@</h1>
29
30    <form class=search action="@url@" method=POST
31          enctype="multipart/form-data" accept-charset=utf-8>
32     <div class=search>
33      <input class=query name=query type=text value="@arg:query@"
34       size=32>
35      <button class=search name=action type=submit value=search>
36       @label:search.search@
37      </button>
38      <input name=nonce type=hidden value="@nonce@">
39     </div>
40    </form>
41
42    <div class=searchresults>
43     @search{artist}{display}{
44     <div class="search_artist">
45      <p class="search_artist">Artist:
46       <span class="search_artist">@part:artist@</span></p>
47      @search{album}{display}{
48      <div class="search_album">
49       <p class="search_album">Album:
50        <span class="search_album">@part:album@</span></p>
51       @search{title}{
52       <div class="search_title">
53        <p class="search_title">Title:
54         <a href="@url@?action=play&#38;file=@urlquote{@file@}@&#38;back=@urlquote{@thisurl@}@&#38;nonce=@nonce@">@part:title@</a>
55         @if{@eq{@trackstate{@file@}@}{playing}@}{[<b>playing</b>]}@
56         @if{@eq{@trackstate{@file@}@}{queued}@}{[<b>queued</b>]}@
57        </p>
58       </div>
59       }@
60      </div>
61      }@
62     </div>
63     }@
64    </div>
65
66 @include{@label{menu}@end}@
67  </body>
68 </html>
69 @@
70 <!--
71 Local variables:
72 mode:sgml
73 sgml-always-quote-attributes:nil
74 sgml-indent-step:1
75 sgml-indent-data:t
76 End:
77 -->