Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- {% extends "learning_logs/base.html"%}
- {%block content%}
- <p>Topics</p>
- <ul>
- {%for topic in topics%}
- <li>
- <a href="{% url 'learning_logs:topic' topic.id %}"> {{topic}}</a></li>
- {%empty%}
- <li>no topic added yet.</li>
- {%endfor%}
- </ul>
- <a href="{%url 'learning_logs:new_topic' %}">add a new topic</a>
- {%endblock content%}
Add Comment
Please, Sign In to add comment