- allow voting by clicking an option on poll details page - show results page after (or when selecting a poll, or trying to re-vote)main
parent
43eefd6bc1
commit
ee7a8335b7
@ -0,0 +1,14 @@
|
|||||||
|
<div>
|
||||||
|
<div>
|
||||||
|
{{ poll.question }}
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
{% for result in results %}
|
||||||
|
<div>
|
||||||
|
{{ result.option.text }} - {{ result.count }}
|
||||||
|
</div>
|
||||||
|
{% empty %}
|
||||||
|
No options defined for Question!
|
||||||
|
{% endfor %}
|
||||||
|
</div>
|
||||||
|
</div>
|
Loading…
Reference in new issue