aboutsummaryrefslogtreecommitdiff
path: root/design/templates/notes/notes_listold.html
blob: 806636963f43aba2cd160d8ed15474ed7f7d67f7 (plain)
1
2
3
4
5
6
7
8
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 %}