34b75cc898664af4e030f2e1e3b585d4d8f083d6
[mir.git] / templates / admin / breakinglist.template
1 <html>
2 <head>
3         <title>${config["Mir.Name"]} | ${lang("breakinglist.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 "head.template">
10 <if data.contentlist>
11 <table border="0" cellpadding="2" cellspacing="1">
12   <tr class="darkgrey">
13     <td><span class="witesmall"><b>${lang("breaking.date")}</b></span></td>
14     <td><span class="witesmall"><b>${lang("breaking.text")}</b></span></td>
15     <td>&nbsp;</td>
16   </tr>
17
18   <list data.contentlist as entry>
19   <tr
20        <if grey=="1"><assign grey="0">class="list1"<else>class="list2"<assign grey="1"> </if>>
21   <td>${entry.webdb_create_formatted}&nbsp;</td>
22   <td>${entry.text}&nbsp;</td>
23   <td><span class="text">&nbsp;<a href="${config.actionRoot}?module=Breaking&do=delete&id=${entry.id}">${lang("delete")}</a>
24     | <a href="${config.actionRoot}?module=Breaking&do=edit&id=${entry.id}">${lang("edit")}</a></span></td>
25   </tr>
26   </list>
27   <tr>
28     <td colspan="3" class="darkgrey"><span class="witetext">${data.count} ${lang("records")}
29       /  ${lang("show_from_to", data.from, data.to)}</span></td>
30     <td>&nbsp;</td>
31   </tr>
32 </table>
33
34       <P>
35 <if data.prev>
36         <a href="${config.actionRoot}?module=Breaking&do=list&where=${data.where}&prevoffset=${data.prev}&prev=zur&uuml;ck">${lang("list.previous")}</a>&nbsp;
37 </if>
38 <if data.next>
39 <a href="${config.actionRoot}?module=Breaking&do=list&where=${data.where}&nextoffset=${data.next}&next=weiter">${lang("list.next")}</a>
40 </if>
41
42 <else>
43   <P align="center">${lang("no_matches_found")}</p>
44 </if>
45 <include "foot.template">
46 </body>
47 </html>
48
49