fnp
/
wolnelektury.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
less verbose localepack
[wolnelektury.git]
/
src
/
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 %}