{% extends "bases/bootstrap-with-nav.html" %}
{% load staticfiles %}
{% load bootstrap3 %}

{% block content %}

<div class="container">
 <h1>Poll: {{poll.question_text}}</h1>
 {% if poll.options %}
   <ul class="list-group">
     {% for option in poll.options.all %}
       <li class="list-group-item">{{ option.choice_text }}</li>
     {% endfor %}
   </ul>
 {% else %}
   <p>No options are listed.</p>
 {% endif %}
</div>


{% endblock %}