Fixes model test

This commit is contained in:
Mouse Reeve
2021-01-31 09:08:06 -08:00
parent d73a1b4ec1
commit 4883231347
7 changed files with 58 additions and 11 deletions

View File

@ -67,7 +67,7 @@
{% if request.user.list_set.exists %}
<ul>
{% for list in request.user.list_set.all %}
<li>
<li class="block">
{% include 'lists/list-item.html' with list=list %}
</li>
{% endfor %}
@ -81,7 +81,7 @@
<h2 class="title">Recent Lists</h2>
<ul>
{% for list in lists %}
<li>
<li class="block">
{% include 'lists/list-item.html' with list=list %}
</li>
{% endfor %}