azube/core/templates/index.html
Angelo Rodriguez d2e6b65a12 work
2024-12-03 15:15:45 +01:00

33 lines
No EOL
899 B
HTML
Executable file

<html>
<head>
<title>Azube</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body>
{{ user.display_name }}
<h1> Deine Berichtshefte </h1>
{% if reports|length == 0 %}
<button onclick="location = '/write'">
Füge dein erstes Berichtsheft hinzu!
</button>
{% endif %}
<div class="min-h-screen bg-gray-100 flex items-center justify-center">
{% for report in reports %}
<div class="{{ style.card }}">
<a href="/report/{{ report.id }}"> {{ report }} </a>
</div>
{% if forloop.last %}
{% if report.week != week_now %}
</div>
<button onclick="location = '/write'" class="{{ style.red_btn }}"> Berichtsheft schreiben </button>
{% endif %}
{% endif %}
{% endfor %}
</div>
</body>
</html>