contains only admin templates which should not be changed by users
[mir.git] / templates / admin / mediafolderlist.template
1 <html>
2 <head>
3         <title>${config["Mir.Name"]} | ${lang("mediafolderlist.htmltitle")}</title>
4         <link rel="stylesheet" type="text/css" href="${config.docRoot}/style/admin.css">
5 </head>
6
7 <body marginwidth="0" marginheight="0" topmargin="0" leftmargin="0">
8
9 <include "templates/admin/head.template">
10 <if data.contentlist>
11         <table border="0">
12                 <tr class="darkgrey">
13                 <td><span class="witetext"><b>${lang("mediafolder.date")}</b></span></td>
14                     <td><span class="witetext"><b>${lang("mediafolder.name")}</b></span></td>
15                 <td><span class="witetext"><b>${lang("mediafolder.location")}</b></span></td>
16                         <td><span class="witetext"><b>${lang("mediafolder.comment")}</b></span></td>
17                         <td><span class="witetext"><b>${lang("mediafolder.keywords")}</b></span></td>
18                  </tr>
19           <list data.contentlist as entry>
20                   <tr <if grey=="1"><assign grey="0">class="list1"<else>class="list2"<assign grey="1"> </if>>
21                         <td>${entry.date}&nbsp;</td>
22                         <td><b>${entry.name}</b>&nbsp;</td>
23                         <td>${entry.place}&nbsp;</td>
24                         <td>${entry.comment}&nbsp;</td>
25                         <td>${entry.keywords}&nbsp;</td>
26                         <td><span class="text"><a href="${config.actionRoot}?module=Mediafolder&do=delete&id=${entry.id}">${lang("delete")}</a>
27                         | <a href="${config.actionRoot}?module=Mediafolder&do=edit&id=${entry.id}">${lang("edit")}</a>
28                                 | <a href="${config.actionRoot}?module=Images&do=list&query_media_folder=${entry.id}">${lang("list")}</a></span></td>
29                   </tr>
30           </list>
31                 <tr>
32         <td colspan="5" class="darkgrey"><span class="witetext">${data.count} ${lang("records")} /
33         ${lang("show_from_to", data.from, data.to)}</span></td>
34         <td>&nbsp;</td>
35                 </tr>
36         </table>
37       <P>
38         <if data.prev>
39         <a href="${config.actionRoot}?module=Mediafolder&do=list&where=${data.where}&prevoffset=${data.prev}&prev=zur&uuml;ck">${lang("list.previous")}</a>&nbsp;
40         </if>
41         <if data.next>
42         <a href="${config.actionRoot}?module=Mediafolder&do=list&where=${data.where}&nextoffset=${data.next}&next=weiter">${lang("list.next")}</a>
43         </if>
44 <else>
45   <P align="center">${lang("no_matches_found")}</p>
46 </if>
47 <include "templates/admin/foot.template">
48 </body>
49 </html>
50
51