moviewyrm/bookwyrm/templates/lists/lists.html

17 lines
268 B
HTML
Raw Normal View History

2021-01-31 05:33:41 +00:00
{% extends 'layout.html' %}
{% block content %}
<h1>lists</h1>
{% if request.user.is_authenticated %}
<h2>Your lists</h2>
{% for list in request.user.list_set.all %}
{{ list }}
{% endfor %}
{% endif %}
{% for list in lists %}
{{ list }}
{% endfor %}
{% endblock %}