From b6bc5c5794b4df182175da34e6b08298084c0324 Mon Sep 17 00:00:00 2001 From: Jan T Date: Wed, 28 Feb 2024 17:32:01 +0200 Subject: Initial commit --- templates/manage.html.j2 | 119 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 119 insertions(+) create mode 100644 templates/manage.html.j2 (limited to 'templates/manage.html.j2') diff --git a/templates/manage.html.j2 b/templates/manage.html.j2 new file mode 100644 index 0000000..82f67ea --- /dev/null +++ b/templates/manage.html.j2 @@ -0,0 +1,119 @@ +{% extends "base.html.j2" %} + +{% block content %} + +

Managing poll {{ poll.title }} by {{ poll.author_name }}

+ +

+ Share this URL with your peers:
+ {{ poll.share_url() }} +

+

+ Note! You can only edit this poll if you have this URL or use the same browser session:
+ {{ poll.manage_url() }} +

+ +
+ + + + + + + + + + + + + + + + + + + +
+
+ +
+ +
+

Options

+
+ + + + + + + + + + + {% for choice in poll.choices %} + + + + + + + + {% endfor %} + + + + + + + + +
Start timeEnd time
+ + + + + +
+ + + + + +
+ +
+

Danger zone

+
+ + + +
+
+ + + +{% endblock %} \ No newline at end of file -- cgit v1.3