2026-02-07 22:47:04 -05:00
|
|
|
{% extends "core/base.html" %}
|
|
|
|
|
|
|
|
|
|
{% block header_text %}{{ user.email }}'s lists{% endblock header_text %}
|
2026-02-08 21:52:04 -05:00
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
<h3>{{ owner.email }}'s lists</h3>
|
|
|
|
|
<ul>
|
|
|
|
|
{% for list in owner.lists.all %}
|
|
|
|
|
<li><a href="{{ list.get_absolute_url }}">{{ list.name }}</a></li>
|
|
|
|
|
{% endfor %}
|
|
|
|
|
</ul>
|
2026-02-18 13:53:05 -05:00
|
|
|
<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>
|
2026-02-08 21:52:04 -05:00
|
|
|
{% endblock content %}
|