54 lines
1.0 KiB
HTML
54 lines
1.0 KiB
HTML
{% extends 'layouts/main.html' %}
|
|
|
|
{% block content %}
|
|
<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;
|
|
}
|
|
|
|
|
|
|
|
</style>
|
|
|
|
|
|
<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>
|
|
|
|
{% include 'components/scripts.html' %}
|
|
|
|
{% endblock %} |