contains only admin templates which should not be changed by users
[mir.git] / templates / admin / hiddenlist.template
1 <html>
2 <head>
3         <title>${config["Mir.Name"]} | ${lang("start.content.hidden")}</title>
4         <link rel="stylesheet" type="text/css" href="${config.docRoot}/style/admin.css">
5
6 </head>
7
8 <body marginwidth="0" marginheight="0" topmargin="0" leftmargin="0">
9
10 <include "templates/admin/head.template">
11 <table width="98%" class="pink">
12   <tr>
13     <td>
14
15
16 <form method="post" action="${config.actionRoot}">
17         <input type="hidden" name="module" value="Hidden">
18         <input type="hidden" name="do" value="list">
19
20
21
22      ${lang("month")}
23     <select name="month">
24     <option value="01" selected >01</option>
25     <option value="02">02</option>
26     <option value="03">03</option>
27     <option value="04">04</option>
28     <option value="05">05</option>
29     <option value="06">06</option>
30     <option value="07">07</option>
31     <option value="08">08</option>
32     <option value="09">09</option>
33     <option value="10">10</option>
34     <option value="11">11</option>
35     <option value="12">12</option>
36     </select>
37     ${lang("year")}
38     <select name="year">
39     <option value="2001">2001</option>
40     <option value="2002" selected >2002</option>
41     <option value="2002">2003</option>
42     <option value="2002">2004</option>
43     <option value="2002">2005</option>
44     </select>
45
46     &nbsp;
47
48     <input type="submit" name="search" value="${lang("commentlist.search")}">
49 </form>
50
51
52     </td>
53   </tr>
54 </table>
55
56
57 <br><br>
58
59 <hr size="4" width="98%" noshade>
60
61 <if data.contentlist>
62 <table cellpadding="6" width="98%" class="litegrey">
63   <tr>
64     <td>
65      <p>${lang("start.content.hidden")} | ${lang("month")}: ${data.month} , ${lang("year")}:${data.year}</p>
66     </td>
67   </tr>
68 </table>
69
70 <list data.contentlist as i>
71 <p>
72 ${lang("content.title")}: <b>${i.title}</b><br>
73 ${lang("content.creator")}: ${i.creator}<br>
74 ${lang("message.date")}: ${i.webdb_create_formatted}<br>
75 <br>
76 <if i.to_media_audio >additional media, type: audio<br></if>
77 <if i.to_media_video >additional media, type: video<br></if>
78 <if i.to_media_other >additional media, type: other<br></if>
79 <if i.to_media_images >additional media, type: image<br></if>
80 </p>
81
82 <p>
83 ${lang("content.abstract")}:<br>
84 ${i.description_parsed}</p>
85
86 <p>
87 ${lang("content.content")}:<br>
88 ${i.content_data_parsed}
89 </p>
90 <p>&nbsp;</p>
91 <hr size="4" width="98%" noshade>
92 <p>&nbsp;</p>
93
94 </list>
95
96
97
98 <else>
99   <tr><td align="center">${lang("no_matches_found")}</td></tr>
100 </if>
101
102
103 <include "templates/admin/foot.template">
104
105 </body>
106 </html>
107
108