[templates] Cleaning up templates and datalog forms

This commit is contained in:
2025-09-11 18:55:45 -04:00
parent 92c0c668b3
commit a1ff82bfec
12 changed files with 44 additions and 16 deletions

View File

@ -123,7 +123,7 @@
{% include "scrobbles/_scrobble_table.html" %}
{% endwith %}
{% else %}
<p>No books today</p>
<p>No books read today</p>
{% endif %}
<h3><a href="{% url 'locations:geolocation_list' %}">Locations</a></h3>
@ -135,5 +135,14 @@
<p>No locations visited today</p>
{% endif %}
<h3><a href="{% url 'moods:mood_list' %}">Moods</a></h3>
{% if Mood %}
{% with scrobbles=Mood count=Mood_count time=Mood_time %}
{% include "scrobbles/_scrobble_table.html" %}
{% endwith %}
{% else %}
<p>No moods felt today </p>
{% endif %}
</div>
</div>