HabitTracker/templates/index.html

58 lines
1.1 KiB
HTML
Raw Normal View History

2024-01-12 10:57:58 +01:00
{% extends 'layouts/main.html' %}
{% block content %}
2024-03-01 08:06:00 +01:00
<h1>
{% if (current_user.is_authenticated) %}<img class="avatar avatar-xl" src="{{user.profile_image}}"/>{% endif %}
{{ title }}
</h1>
<h3>{{ utc_dt }}</h3>
<style>
#heatmap {
display: grid;
grid-template-columns: repeat(7, 0fr); /* 7 Tage in einer Woche */
gap: 5px;
width: 100%;
table-layout: fixed;
}
.day {
width: 50px;
height: 50px;
border: 1px solid #ccc;
display: flex;
align-items: center;
justify-content: center;
table-layout: fixed;
}
2024-02-20 11:17:06 +01:00
</style>
2024-02-20 11:17:06 +01:00
<div class="d-md-flex gap-3">
2024-02-20 11:17:06 +01:00
{% if current_user.is_authenticated %}
{% include 'components/heatmap.html' %}
{% endif %}
2024-02-20 11:17:06 +01:00
{% if current_user.is_authenticated %}
{% include 'components/habit_lists.html' %}
{% endif %}
2024-02-20 11:17:06 +01:00
{% if current_user.is_authenticated %}
2024-02-28 10:46:26 +01:00
{% include 'components/delete_button.html' %}
{% endif %}
2024-02-20 11:17:06 +01:00
2024-03-05 11:15:43 +01:00
{% if current_user.is_authenticated %}
{% include 'components/delete_list.html' %}
{% endif %}
</div>
{% include 'components/scripts.html' %}
2024-01-12 10:57:58 +01:00
{% endblock %}