Skip to content

Instantly share code, notes, and snippets.

@solidpple
Created December 17, 2017 13:51
Show Gist options
  • Select an option

  • Save solidpple/690b69f123e04efe34b051c668059ff7 to your computer and use it in GitHub Desktop.

Select an option

Save solidpple/690b69f123e04efe34b051c668059ff7 to your computer and use it in GitHub Desktop.
{% if latest_question_list %}
<ul>
{% for question in latest_question_list %}
<li><a href="/polls/{{ question.id }}/">{{ question.question_text }}</a></li>
{% endfor %}
</ul>
{% else %}
<p>No polls are available.</p>
{% endif %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment