diff options
Diffstat (limited to 'design/templates/notes/notes_listold.html')
-rw-r--r-- | design/templates/notes/notes_listold.html | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/design/templates/notes/notes_listold.html b/design/templates/notes/notes_listold.html new file mode 100644 index 0000000..8066369 --- /dev/null +++ b/design/templates/notes/notes_listold.html @@ -0,0 +1,9 @@ +{% extends 'base.html' %} +{% block content %} +<main> + <h1> Notes</h1> + <ul>{% for obj in object_list %} + <li><a href="{% url 'notes:note-detail' user.username obj.slug %}">{{obj}}</a></li> + {% endfor %}</ul> +</main> +{% endblock %} |