20 lines
590 B
HTML
20 lines
590 B
HTML
{% extends "core/base.html" %}
|
|
{% load lyric_extras %}
|
|
|
|
{% block header_text %}{{ user|display_name }}'s lists{% endblock header_text %}
|
|
|
|
{% block content %}
|
|
<h3>{{ owner|display_name }}'s lists</h3>
|
|
<ul>
|
|
{% for list in owner.lists.all %}
|
|
<li><a href="{{ list.get_absolute_url }}">{{ list.name }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
<h3>Lists shared with me</h3>
|
|
<ul>
|
|
{% for list in owner.shared_lists.all %}
|
|
<li><a href="{{ list.get_absolute_url }}">{{ list.name }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endblock content %}
|