fnp
/
wolnelektury.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
edb14cf7ba49c11c72f6f6003c6edac3bf847126
[wolnelektury.git]
/
apps
/
polls
/
templates
/
polls
/
poll.html
1
{% extends "base.html" %}
2
{% load i18n %}
3
{% load polls_tags %}
4
5
{% block titleextra %}{{poll.question}}{% endblock %}
6
7
8
{% block body %}
9
<div class="normal-text">
10
{% if voted_already %}
11
<p class="poll-msg">{% trans "Thanks for voting! You can see current results below." %}</p>
12
{% endif %}
13
{% poll poll %}
14
</div>
15
{% endblock %}