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