You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
439 B

{% extends "base" %}
{% block content %}
<ol>
{% for list in lists %}
<li><a href="/show/notes/{{ list.uuid }}">{{ list.name }}</a> <a href="/forms/new/note/{{ list.uuid}}">New Note</a></li>
{% endfor %}
{% for list in perm_lists %}
<li><a href="/show/notes/{{ list.uuid }}">{{ list.name }}</a> (shared from {{ list.owner_id }}) <a href="/forms/new/note/{{ list.uuid }}">New Note</a></li>
{% endfor %}
</ol>
{% endblock %}