index.html 250 B

1234567
  1. <div class="panel panel-default panel-poll">
  2. {% if user.is_anonymous or not poll.acl.can_vote or poll.has_selected_choices %}
  3. {% include "misago/poll/results.html" %}
  4. {% else %}
  5. {% include "misago/poll/voting.html" %}
  6. {% endif %}
  7. </div>