contains only admin templates which should not be changed by users
[mir.git] / templates / admin / breaking.template
1 <html>
2 <head>
3         <title>${config["Mir.Name"]} | ${lang("breaking.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 "templates/admin/head.template">
10 <form action="${config.actionRoot}" method="post">
11         <input type="hidden" name="module" value="Breaking">
12         <input type="hidden" name="id" value="${data.id}">
13         <if data.new><input type="hidden" name="do" value="insert">
14         <else><input type="hidden" name="do" value="update"></if>
15 <table border="0">
16   <tr>
17     <td align="right" class="darkgrey"><span class="witesmall">
18         <B>${lang("breaking.date")}:</B></span></td>
19     <td>
20       ${data.webdb_create_formatted}
21     </td>
22   </tr>
23
24   <tr>
25     <td align="right" class="darkgrey"><span class="witesmall">
26         <B>${lang("breaking.text")}:</B> ${lang("breaking.textinfo")}</span></td>
27     <td>
28          <textarea cols="50" rows="3" name="text" wrap=virtual>${data.text}</textarea>
29     </td>
30   </tr>
31
32   <tr>
33     <td colspan="2" align="right"> <span class="wite"><if data.new>
34       <input type="submit" name="save" value="${lang("insert")}">
35     <else>
36     <input type="submit" name="save" value="${lang("save")}">
37     </if> </span></form></span>
38     </td>
39 </table>
40 <include "templates/admin/foot.template">
41 </body>
42 </html>