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