{% extends "app/layout.html" %} {% block content %}

Polls.


{% if latest_poll_list %} {% for poll in latest_poll_list %} {% endfor %}
{{poll.text}}
{% else %}

No polls available.


You can add a set of sample polls.

{% csrf_token %}

You can design new polls using the Django administration interface.

Django Administration »

{% endif %} {% endblock %}