fix in the date representation of listed comments
[mir.git] / templates / admin / fileeditlist.template
1 <html>
2 <head>
3         <title>${config["Mir.Name"]} | ${lang("fileeditlist.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 <include "templates/admin/head.template">
9
10
11 <if data.filelist>
12
13 <table border="0" cellpadding="2" cellspacing="1">
14
15   <tr class="dark">
16
17     <td><span class="witesmall"><b>${lang("fileeditlist.filename")}</b></span></td>
18         <td>&nbsp;</td>
19   </tr>
20
21
22   <list data.filelist as entry>
23         <tr
24         <if grey=="1"><assign grey="0">class="list1"<else>class="list2"<assign grey="1"> </if>
25         >
26                 <td>${entry}&nbsp;</td>
27                 <td><span class="small"><a href="${config.actionRoot}?module=FileEdit&do=edit&filename=${entry}">${lang("edit")}</a></span></td>
28         </tr>
29   </list>
30
31 </table>
32
33       <P>
34
35 <else>
36   <P align="center">${lang("no_matches_found")}</p>
37 </if>
38 <include "templates/admin/foot.template">
39 </body>
40 </html>
41
42