HabitTracker/templates/index.html
2024-03-06 10:33:04 +01:00

63 lines
1.4 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 %}
{% if current_user.is_authenticated %}
{% include 'components/delete_list.html' %}
{% endif %}
{% if not current_user.is_authenticated %}
<script type="module" src="https://unpkg.com/@splinetool/viewer@1.0.55/build/spline-viewer.js"></script>
<spline-viewer loading-anim-type="spinner-small-dark" url="https://prod.spline.design/4mCpd7DzpXgN2X9q/scene.splinecode"></spline-viewer>
{% endif %}
</div>
{% include 'components/scripts.html' %}
{% endblock %}