rename of template-dir to template-dist. in a installed system the templates should...
[mir.git] / templates-dist / de / commentlist.template
1 <html>
2 <head>
3         <title>indymedia.de | commentlist</title>
4 </head>
5
6 <body bgcolor="#FFFFFF">
7
8 <include "head.template">
9
10 <table border="0" cellpadding="2" cellspacing="1">
11   <tr>
12     <td colspan="5"><form method="post" action="${actionRoot}">
13         <input type="hidden" name="module" value="Comment">
14         <input type="hidden" name="do" value="list">
15         <input type="text" size="10" maxlength="20" name="query_text" value="${query_text}">
16         <select name="query_field">
17     <option value="title"<if query_field=="title"> selected</if>>Titel</option>
18     <option value="creator"<if query_field=="creator"> selected</if>>Urbheber</option>
19     <option value="description"<if query_field=="description"> selected</if>>Inhalt</option>
20     </select>
21         <select name="query_is_published">
22     <option value="">--</option>
23     <option value="0" <if query_is_published=="0"> selected</if>>versteckt</option>
24     <option value="1" <if query_is_published=="1"> selected</if>>produziert</option>
25     </select>
26     <select name="order">
27     <option value="webdb_create" <if order=="webdb_create"> selected</if>>uhrzeit</option>
28     <option value="articletitle" <if order=="articletitle"> selected</if>>artikeltitel</option>
29     </select>
30         <input type="submit" name="search" value="go!">
31         </form>
32         </td>
33   </tr>
34
35   <tr bgcolor="#006600" >
36         <td><font color="#FFFFFF" face="Verdana, Arial, Helvetica, sans-serif" size="-1">
37         <b>datum</b></font></td>
38         <td><font color="#FFFFFF" face="Verdana, Arial, Helvetica, sans-serif" size="-1">
39         <b>titel<br>urheber</b></font></td>
40     <td><font color="#FFFFFF" face="Verdana, Arial, Helvetica, sans-serif" size="-1">
41         <b>kommentartext</b></font></td>
42     <td><font color="#FFFFFF" face="Verdana, Arial, Helvetica, sans-serif" size="-1">
43         <b>zu artikel</b></font></td>
44   </tr>
45 <if contentlist>
46   
47   <list contentlist as entry>
48   <tr <compress><if grey=="1"><assign grey="0">bgcolor="#dddddd" <else><assign grey="1"> </if></compress>>
49         <td>${entry.date}<br>
50         <if entry.is_published=="0"><font color="Brown">V</font><else>-</if>
51         </td>
52         
53         <td>
54                 <b>${entry.title}</b><br>${entry.creator}
55         </td>
56         
57         <td>
58                 <font size="-1">${entry.description}</font>
59                 <a href="${actionRoot}?module=Comment&do=edit&id=${entry.id}">edit</a>
60         </td>
61
62         <td>
63                 <a href="${actionRoot}?module=Content&do=edit&id=${articleHash[entry.to_media]["id"]}">
64                 ${articleHash[entry.to_media]["title"]}</a>
65         </td>
66         
67         <td><font size="1">&nbsp;<a href="${actionRoot}?module=Comment&do=delete&id=${entry.id}">delete</a>
68     </font></td>
69   </tr>
70   </list>
71   
72   <tr>
73     <td colspan="4" bgcolor="#006600"><font color="#ffffff">${count} datens&auml;tze
74       / anzeige von ${from} bis ${to}</font></td>
75     <td>&nbsp;</td>
76   </tr>
77 <tr><td>
78 <if prev>
79 <a href="${actionRoot}?module=Comment&do=list&order=${order}&query_text=${query_text_encoded}&query_field=${query_field}&query_is_published=${query_is_published}&query_media_folder=${query_media_folder}&offset=${prev}&prev=zur&uuml;ck">zurueck</a>&nbsp;
80 </if>
81 <if next>
82 <a href="${actionRoot}?module=Comment&do=list&order=${order}&query_text=${query_text_encoded}&query_field=${query_field}&query_is_published=${query_is_published}&query_media_folder=${query_media_folder}&offset=${next}&next=weiter">weiter</a>
83 </if>
84 </td></tr>
85 <else>
86   <tr><td align="center">Keine passenden Eintr&auml;ge gefunden!</td></tr>
87 </if>
88 </table>
89 <include "foot.template">
90 </body>
91 </html>
92
93