21 lines
614 B
HTML
21 lines
614 B
HTML
<!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>
|
|
<li>URL: <a href="${poll.get_url()}" title="link of this poll">${poll.get_url()}</a></li>
|
|
</ul>
|
|
</body>
|
|
</html>
|
|
|
|
|