chiark / gitweb /
Typo fix.
[disorder] / templates / new.tmpl
CommitLineData
78efa64e
RK
1<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
2<!--
3This file is part of DisOrder.
8f9616f1 4Copyright (C) 2004-2008 Richard Kettlewell
78efa64e 5
e7eb3a27 6This program is free software: you can redistribute it and/or modify
78efa64e 7it under the terms of the GNU General Public License as published by
e7eb3a27 8the Free Software Foundation, either version 3 of the License, or
78efa64e
RK
9(at your option) any later version.
10
e7eb3a27
RK
11This program is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
78efa64e
RK
15
16You should have received a copy of the GNU General Public License
e7eb3a27 17along with this program. If not, see <http://www.gnu.org/licenses/>.
78efa64e
RK
18-->
19<html>
20 <head>
0d0253c9 21@stdhead{new}
78efa64e
RK
22 </head>
23 <body>
0d0253c9 24@stdmenu{new}
5fb0c1a0 25 <h1>@label{new.title}</h1>
78efa64e 26
5fb0c1a0
RK
27@# Only display the table if there is something to put in it
28@if{@isnew}{
78efa64e
RK
29 <table class=new>
30 <tr class=headings>
5fb0c1a0
RK
31 <th class=artist>@label{heading.artist}</th>
32 <th class=album>@label{heading.album}</th>
33 <th class=title>@label{heading.title}</th>
34 <th class=length>@label{heading.length}</th>
d7ce365e 35@right{prefs}{
5fb0c1a0 36 <th class=button>&nbsp;</th>}
78efa64e
RK
37 </tr>
38 @new{
5fb0c1a0
RK
39 <tr class=@parity>
40 <td class=artist>@martist{new}{@track}</td>
41 <td class=album>@malbum{new}{@track}</td>
e7ce7665
RK
42 <td class=title>@mtitleplay{new}{@track}</td>
43 <td class=length>@length{@track}</td>
5fb0c1a0
RK
44 @right{prefs}{
45 <td class=imgbutton>
46 <a class=imgbutton
02eaa49d 47 href="@url?action=prefs&#38;track=@urlquote{@track}">
5fb0c1a0
RK
48 <img class=button src="@image{edit}"
49 title="@label{choose.prefsverbose}"
50 alt="@label{choose.prefs}">
51 </a>
52 </td>
53 </tr>}
54 }
78efa64e 55 </table>
5fb0c1a0 56}
78efa64e 57
0d0253c9 58@credits
78efa64e
RK
59 </body>
60</html>
0d0253c9 61@discard{
78efa64e
RK
62Local variables:
63mode:sgml
64sgml-always-quote-attributes:nil
65sgml-indent-step:1
66sgml-indent-data:t
0d0253c9
RK
67indent-tabs-mode:nil
68fill-column:79
78efa64e 69End:
0d0253c9 70}@#