2010-04-15 12:32:45 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml"
|
|
|
|
xmlns:xi="http://www.w3.org/2001/XInclude"
|
|
|
|
xmlns:py="http://genshi.edgewall.org/">
|
|
|
|
<xi:include href="layout.html" />
|
|
|
|
|
|
|
|
<head>
|
|
|
|
<title>Poll details</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<h1>Poll: ${poll.title}</h1>
|
|
|
|
<ul>
|
|
|
|
<li>Author: ${poll.author}</li>
|
|
|
|
<li>Created: ${poll.get_creation_time_string()}</li>
|
|
|
|
<li>Description: ${poll.description}</li>
|
2010-04-15 13:50:58 +02:00
|
|
|
<li>Public URL: <a href="${poll.get_url()}" title="link of this poll">${poll.get_url()}</a></li>
|
|
|
|
<li>Administrative URL: <a href="${poll.get_admin_url()}" title="link for managing this poll">${poll.get_admin_url()}</a> (here)</li>
|
2010-04-15 12:32:45 +02:00
|
|
|
<li py:if="poll.get_settings()">Settings:<ul>
|
|
|
|
<li py:for="key, value in poll.get_settings().items()">${key}: ${value}</li>
|
|
|
|
</ul></li>
|
|
|
|
<li><a href="${poll.get_edit_url()}" title="edit this poll">Edit this poll</a></li>
|
2010-04-15 12:58:36 +02:00
|
|
|
<li><a href="${poll.get_delete_url()}" title="delete this poll">Delete this poll</a></li>
|
2010-04-15 12:32:45 +02:00
|
|
|
</ul>
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
|