{% extends "base.html.j2" %} {% block content %}

{{ poll.title }} by {{ poll.author_name }}

{% if poll.description %}

{{ poll.description }}

{% endif %} {% if poll.choices | length == 0 %}

No options available.

{% else %}
{% if display_mode == "table" %} {% include "poll_vote_table.html.j2" %} {% else %} {% include "poll_vote_list.html.j2" %} {% endif %} {% endif %} {% endblock %}