Guest User

Untitled

a guest
Jul 16th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. Invalid block tag on line 5: 'endfor', expected 'elif', 'else' or 'endif'.
  2. Did you forget to register or load this tag?
  3.  
  4. {% if latest_question_list %}
  5. <ul>
  6. {% for question in latest_question_list %}
  7. <li><a href="/polls/{{ question.id }}/">{{ question.question_text }}</a></li>
  8. {% endfor %}
  9. </ul>
  10. {% else %}
  11. <p>No polls are available.</p>
  12. {% endif %}
Add Comment
Please, Sign In to add comment