Created
December 17, 2017 13:51
-
-
Save solidpple/690b69f123e04efe34b051c668059ff7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {% 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