1
0
Fork 0

Consistent null states and page titles in user profile views

This commit is contained in:
Mouse Reeve 2023-08-06 15:36:56 -07:00
parent 9d69f2fb3e
commit 66250e0dd8
7 changed files with 27 additions and 6 deletions

View file

@ -47,4 +47,7 @@
</div>
</div>
{% endfor %}
{% if not lists or not lists.exists %}
<p class="column"><em>{% trans "No lists found." %}</em></p>
{% endif %}
</div>

View file

@ -43,7 +43,6 @@
</nav>
{% endif %}
{% if lists %}
<section class="block">
{% include 'lists/list_items.html' with lists=lists %}
</section>
@ -51,7 +50,6 @@
<div>
{% include 'snippets/pagination.html' with page=lists path=path %}
</div>
{% endif %}
{% endblock %}