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
324 B

{% extends "base" %}
{% block content %}
<ol>
{% for list in lists %}
<li><a href="/show/list/{{ list.id }}">{{ list.name }}</a></li>
{% endfor %}
{% for list in perm_lists %}
<li><a href="/show/list/{{ list.id }}">{{ list.name }}</a> (shared from {{ list.owner_id }})</li>
{% endfor %}
</ol>
{% endblock %}