Lists the hidden articles of one month
authorinit <init>
Sun, 2 Jun 2002 13:21:58 +0000 (13:21 +0000)
committerinit <init>
Sun, 2 Jun 2002 13:21:58 +0000 (13:21 +0000)
templates-dist/admin/hiddenlist.template [new file with mode: 0755]

diff --git a/templates-dist/admin/hiddenlist.template b/templates-dist/admin/hiddenlist.template
new file mode 100755 (executable)
index 0000000..677c890
--- /dev/null
@@ -0,0 +1,93 @@
+<html>
+<head>
+       <title>${lang("commentlist.htmltitle")}</title>
+       <link rel="stylesheet" type="text/css" href="${config.docRoot}/admin.css">
+
+</head>
+
+<body bgcolor="#FFFFFF">
+
+<include "admin/head.template">
+
+<table border="0" cellpadding="2" cellspacing="1">
+  <tr>
+    <td colspan="5">
+        <form method="post" action="${config.actionRoot}">
+       <input type="hidden" name="module" value="Comment">
+       <input type="hidden" name="do" value="list">
+       <input type="hidden" name="offset" value="${data.offset}">
+       <input type="text" size="10" maxlength="20" name="query_text" value="${data.query_text}">
+       <select name="query_field">
+    <option value="title"<if data.query_field=="title"> selected</if>>${lang("comment.title")}</option>
+    <option value="creator"<if data.query_field=="creator"> selected</if>>${lang("comment.creator")}</option>
+    <option value="description"<if data.query_field=="description"> selected</if>>${lang("comment.text")}</option>
+    </select>
+       <select name="query_is_published">
+    <option value="">--</option>
+    <option value="0" <if data.query_is_published=="0"> selected</if>>${lang("commentlist.hidden")}</option>
+    <option value="1" <if data.query_is_published=="1"> selected</if>>${lang("commentlist.produced")}</option>
+    </select>
+    <select name="order">
+    <option value="webdb_create" <if data.order=="webdb_create"> selected</if>>${lang("comment.date")}</option>
+    <option value="articletitle" <if data.order=="articletitle"> selected</if>>${lang("comment.title")}</option>
+    </select>
+       <input type="submit" name="search" value="${lang("commentlist.search")}">
+       </form>
+       </td>
+  </tr>
+
+  <tr class="head">
+       <td><p class="head">${lang("comment.date")}</p></td>
+               <td><p class="head">${lang("comment.title")}/ ${lang("comment.creator")}<br>
+                                       ${lang("comment.text")}</p></td>
+    <td><p class="head">${lang("comment.article")}</P></td>
+  </tr>
+
+<if data.contentlist>
+<table cellpadding="6" bgcolor="#dddddd" width="98%">
+  <tr>
+    <td>
+     <p>Hidden Articles | month: ${###} , year:${###}</p>
+    </td>
+  </tr>
+</table>
+
+<list data.contentlist as i>
+<p>
+Titel: <b>${i.title}</b><br>
+Author: ${i.creator}<br>
+Published: ${i.webdb_create_formatted}<br>
+<br>
+<if i.to_media_audio >additional media, type: audio<br></if>
+<if i.to_media_video >additional media, type: video<br></if>
+<if i.to_media_other >additional media, type: other<br></if>
+<if i.to_media_images >additional media, type: image<br></if>
+</p>
+
+<p>
+article abstract:<br>
+${i.description_parsed}</p>
+
+<p>
+article text:<br>
+${i.content_data_parsed}
+</p>
+<p>&nbsp;</p>
+<hr size="4" width="98%" noshade>
+<p>&nbsp;</p>
+
+</list>
+
+
+
+<else>
+  <tr><td align="center">${lang("no_matches_found")}</td></tr>
+</if>
+
+
+<include "admin/foot.template">
+
+</body>
+</html>
+
+