remove gratuitous uses of encodeHTML as well as a couple of other where it is a bug...
[mir.git] / templates-dist / admin / mediafolderlist.template
1 <html>
2 <head>
3         <title>${lang("mediafolderlist.htmltitle")}</title>
4 </head>
5
6 <body bgcolor="#FFFFFF">
7 <include "admin/head.template">
8 <if data.contentlist>
9         <table border="0">
10                 <tr bgcolor="#006600">
11                 <td><font color="#ffffff"><b>${lang("mediafolder.date")}</b></font></td>
12                     <td><font color="#ffffff"><b>${lang("mediafolder.name")}</b></font></td>
13                 <td><font color="#ffffff"><b>${lang("mediafolder.location")}</b></font></td>
14                         <td><font color="#ffffff"><b>${lang("mediafolder.comment")}</b></font></td>
15                         <td><font color="#ffffff"><b>${lang("mediafolder.keywords")}</b></font></td>
16                  </tr>
17           <list data.contentlist as entry>
18                   <tr <if grey=="1"><assign grey="0">bgcolor="#dddddd" <else><assign grey="1"> </if> >
19                         <td>${entry.date}&nbsp;</td>
20                         <td><b>${encodeHTML(entry.name)}</b>&nbsp;</td>
21                         <td>${encodeHTML(entry.place)}&nbsp;</td>
22                         <td>${encodeHTML(entry.comment)}&nbsp;</td>
23                         <td>${encodeHTML(entry.keywords)}&nbsp;</td>
24                         <td><font size="1"><a href="${config.actionRoot}?module=Mediafolder&do=delete&id=${entry.id}">${lang("delete")}</a>
25                         | <a href="${config.actionRoot}?module=Mediafolder&do=edit&id=${entry.id}">${lang("edit")}</a>
26                                 | <a href="${config.actionRoot}?module=Images&do=list&query_media_folder=${entry.id}">${lang("list")}</a></font></td>
27                   </tr>
28           </list>
29                 <tr>
30         <td colspan="5" bgcolor="#006600"><font color="#ffffff">${data.count} ${lang("records")} /
31         ${lang("show_from_to", data.from, data.to)}</font></td>
32         <td>&nbsp;</td>
33                 </tr>
34         </table>
35       <P>
36         <if data.prev>
37         <a href="${config.actionRoot}?module=Mediafolder&do=list&where=${encodeHTML(data.where)}&prevoffset=${encodeHTML(data.prev)}&prev=zur&uuml;ck">${lang("list.previous")}</a>&nbsp;
38         </if>
39         <if data.next>
40         <a href="${config.actionRoot}?module=Mediafolder&do=list&where=${encodeHTML(data.where)}&nextoffset=${encodeHTML(data.next)}&next=weiter">${lang("list.next")}</a>
41         </if>
42 <else>
43   <P align="center">${lang("no_matches_found")}</p>
44 </if>
45 <include "admin/foot.template">
46 </body>
47 </html>
48
49