this repo has no description

Make the list of questions an ordered list. Seems like a better way to display things

+2 -2
+2 -2
polls/templates/polls/index.html
··· 1 1 {% if latest_question_list %} 2 - <ul> 2 + <ol> 3 3 {% for question in latest_question_list %} 4 4 <li> 5 5 <a href="/polls/{{question.id}}/"> {{ question.question_text }} </a> 6 6 </li> 7 7 {% endfor %} 8 - </ul> 8 + </ol> 9 9 {% else%} 10 10 <p>No polls are available.</p> 11 11 {% endif %}