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