aboutsummaryrefslogtreecommitdiffstats
path: root/templates/index.html.j2
blob: db458da58fbb296c64652ab9fb396a7f21d165c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{% extends "base.html.j2" %}

{% block content %}
<h2>Create new diddle</h2>
<form class="poll-form" action="/poll/create" method="post">
  {% include "poll_info_table.html.j2" %}

  <p>You can add options after submitting.</p>
  <input class="green" type="submit" value="Create">
</form>

{% if created_polls | length != 0 %}
<h3>My diddles</h3>
<ul>
  {% for poll in created_polls %}
  <li><a href="/manage/{{ poll.manage_code }}">{{ poll.title }}</a></li>
  {% endfor %}
</ul>
{% endif %}

{% endblock %}