codekasten/tycker/templates/admin_show_entries.html

55 lines
2.1 KiB
HTML

<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:py="http://genshi.edgewall.org/"
xmlns:xi="http://www.w3.org/2001/XInclude">
<xi:include href="layout.html" />
<head>
<title>Admin Ticker</title>
</head>
<body>
<?python
import datetime
now = datetime.datetime.now()
?>
<p><i><a href="../../${static_url}" title="static website">show tycker website</a></i></p>
<p>The content may be written in <a href="http://www.wikicreole.org/imageServlet?page=CheatSheet%2Fcreole_cheat_sheet.png" target="_blank">wikicreole syntax</a>. Here are some examples:</p>
<dl>
<dt><strong>accentuation</strong></dt>
<dd>//italics// --> <em>italics</em></dd>
<dd>**bold** --> <strong>bold</strong></dd>
<dt><strong>linking</strong></dt>
<dd>Link to [[page]] --> Link to <a href="https://systemausfall.org">page</a></dd>
<dd>[[URL|linkname]] --> <a href="systemausfall.org">linkname</a></dd>
<dt><strong>headings</strong></dt>
<dd>== Large heading</dd>
<dd>=== Medium heading</dd>
<dd>==== Small heading</dd>
</dl>
<table border="1">
<tr><th>Timestamp</th><th>Title</th><th>Content</th></tr>
<tr><form action="submit" method="GET">
<td><input type="text" size="20" name="date" value="${now.strftime(date_format)}" /></td>
<td><input type="text" size="25" name="title" value="" autofocus="autofocus" /></td>
<td><textarea name="content" rows="8" cols="80" /></td>
<td><input type="submit" value="Create" /></td>
</form></tr>
<tr py:for="entry in entries"><form action="submit" method="GET">
<td><input type="text" size="20" name="date" value="${entry['timestamp'].strftime(date_format)}" /></td>
<td><input type="text" size="25" name="title" value="${entry['title']}" /></td>
<td><textarea name="content" rows="8" cols="80">${entry['content']}</textarea></td>
<td><input type="hidden" name="entry_id" value="${entry.id}" /><input type="submit" value="Update" /></td>
</form>
<td><form action="delete" method="GET">
<input type="hidden" name="entry_id" value="${entry.id}" />
<input type="submit" value="Delete" />
</form></td>
</tr>
</table>
</body>
</html>