14 lines
410 B
HTML
14 lines
410 B
HTML
{% extends "layout.html" %}
|
|
{% block body %}
|
|
<div id="preview_header" class=autoformat>
|
|
Preview for: {{ key|safe }}<br>
|
|
Voting ends at: {{ valid_for }}<br>
|
|
Voting starts at: {{ opens }}<br>
|
|
Style (open/closed): {{ form.vote_style }}<br>
|
|
Show results after voting: {{ form.show_results }}<br>
|
|
Title: {{ form.title }}<br>
|
|
</div>
|
|
|
|
{% include "questions.html" %}
|
|
{% endblock %}
|