Removed habittracker content when not logged in

This commit is contained in:
Verox001 2024-03-05 09:44:54 +01:00
parent 9fdbef1b7d
commit 6337eaff81

View File

@ -34,13 +34,18 @@
<div class="d-md-flex gap-3">
{% if current_user.is_authenticated %}
{% include 'components/heatmap.html' %}
{% endif %}
{% if current_user.is_authenticated %}
{% include 'components/habit_lists.html' %}
{% endif %}
{% if current_user.is_authenticated %}
{% include 'components/delete_button.html' %}
{% endif %}
</div>