tycker/templates/admin_show_entries.html
2015-04-26 20:25:24 +00:00

76 lines
2.8 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>
<link href="../admin.css" type="text/css" rel="stylesheet" />
<link href="../bootstrap/css/bootstrap.min.css" type="text/css" rel="stylesheet" media="all" />
<link href="../bootstrap/css/bootstrap-theme.min.css" type="text/css" rel="stylesheet" media="all" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
</head>
<body>
<div class="container theme-showcase" role="main">
<h1 id="title">Tycker Administration</h1>
<?python
import datetime
now = datetime.datetime.now()
?>
<div class="page-header"></div>
<div class="container">
<p><i><a href="../../${static_url}" title="static website">show tycker website</a></i></p>
<div id="help">
<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>Emphasis</strong></dt>
<dd><em>//italics//</em>; <strong>**bold**</strong></dd>
<dt><strong>Links</strong></dt>
<dd>[[URL]]; [[URL|linkname]]</dd>
<dt><strong>Headings</strong></dt>
<dd>== Large heading; === Medium heading; ==== Small heading</dd>
<dt><strong>Lists</strong></dt>
<dd>* Bullet list; ** Sub item of bullet list; # Numbered list; ## Sub item of numbered list</dd>
<dt><strong>Line break</strong></dt>
<dd>Force\\Linebreak</dd>
</dl>
</div>
<div id="timestamp">
<form action="generate" method="GET">
<input type="submit" value="Generate current timestamp" />
</form>
</div>
<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>
</div>
</div>
</body>
</html>