azube/core/templates/index.html
2024-12-02 16:49:45 +01:00

34 lines
No EOL
849 B
HTML
Executable file

<html>
<head>
<title>Azube</title>
<style>
.grid-container {
display: inline-grid;
grid-template-columns: repeat(3, 1fr);
gap: 5px;
padding: 10px;
border: 1px solid #ddd;
border-radius: 0.5rem;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
</style>
</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 %}
{% for report in reports %}
<div class="grid-container">
<p> {{ report }} </p>
</div>
{% endfor %}
</body>
</html>