this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add polls namespace to the template

+3 -1
+3 -1
polls/templates/polls/index.html
··· 2 2 <ol> 3 3 {% for question in latest_question_list %} 4 4 <li> 5 - <a href="{% url 'detail' question.id %}"> {{ question.question_text }} </a> 5 + <a href="{% url 'polls:detail' question.id %}"> 6 + {{ question.question_text }} 7 + </a> 6 8 </li> 7 9 {% endfor %} 8 10 </ol>