Commit | Line | Data |
---|---|---|
460b9539 | 1 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"> |
2 | <!-- | |
3 | This file is part of DisOrder. | |
8f9616f1 | 4 | Copyright (C) 2004, 2005, 2007, 2008 Richard Kettlewell |
460b9539 | 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:recent.title@</title> | |
25 | </head> | |
26 | <body> | |
e12da4d9 | 27 | @include{topbar}@ |
3225872d | 28 | <h1>@label:recent.title@</h1> |
460b9539 | 29 | |
30 | @#{only display the table if there is something to put in it}@ | |
31 | @if{@isrecent@}{ | |
32 | <table class=recent> | |
33 | <tr class=headings> | |
34 | <th class=when>@label:heading.when@</th> | |
35 | <th class=who>@label:heading.who@</th> | |
36 | <th class=artist>@label:heading.artist@</th> | |
37 | <th class=album>@label:heading.album@</th> | |
38 | <th class=title>@label:heading.title@</th> | |
39 | <th class=length>@label:heading.length@</th> | |
d7ce365e | 40 | @right{prefs}{ |
41 | <th class=button> </th>}@ | |
460b9539 | 42 | </tr> |
43 | @recent{ | |
44 | <tr class=@parity@> | |
45 | <td class=when>@when@</td> | |
46 | <td class=who>@who@</td> | |
a31780f6 | 47 | <td class=artist>@right{play}{<a class=directory |
61507e3c | 48 | title="@part{artist}@" |
a31780f6 | 49 | href="@url@?action=choose&directory=@urlquote{@dirname{@dirname{@part:path@}@}@}@" |
50 | >@part{short}{artist}@</a>}{<span class=directory | |
51 | title="@part{artist}@" | |
52 | >@part{short}{artist}@</span>}@</td> | |
53 | <td class=album>@right{play}{<a class=directory | |
54 | title="@part{album}@" | |
55 | href="@url@?action=choose&directory=@urlquote{@dirname{@part:path@}@}@" | |
56 | >@part{short}{album}@</a>}{<span class=directory | |
61507e3c | 57 | title="@part{album}@" |
a31780f6 | 58 | >@part{short}{album}@</span>}@</td> |
61507e3c RK |
59 | <td class=title><span |
60 | title="@part{title}@">@part{short}{title}@</span></td> | |
460b9539 | 61 | <td class=length>@length@</td> |
d7ce365e | 62 | @right{prefs}{ |
460b9539 | 63 | <td class=imgbutton><a class=imgbutton |
da68af53 | 64 | href="@url@?action=prefs&0_file=@urlquote{@file@}@"><img |
8f9616f1 | 65 | class=button src="@image:edit@" |
460b9539 | 66 | title="@label:choose.prefsverbose@" |
67 | alt="@label:choose.prefs@"></a></td> | |
d7ce365e | 68 | </tr>}@ |
460b9539 | 69 | }@ |
70 | </table> | |
71 | }@ | |
72 | ||
e12da4d9 | 73 | @include{topbarend}@ |
460b9539 | 74 | </body> |
75 | </html> | |
76 | @@ | |
77 | <!-- | |
78 | Local variables: | |
79 | mode:sgml | |
80 | sgml-always-quote-attributes:nil | |
81 | sgml-indent-step:1 | |
82 | sgml-indent-data:t | |
83 | End: | |
84 | --> |