meeat/templates/home.html

24 lines
529 B
HTML
Raw Normal View History

2022-11-05 09:51:32 +01:00
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<p>Hallo, {{ session.user.email }}!</p>
2024-10-19 19:17:21 +02:00
{% for meet in meets %}
{% if loop.first %}
<ul>
{% endif %}
<li><a href="{{url_for("vote", key=meet.key)}}">{{meet.title}}</a></li>
{% if loop.last %}
</ul>
{% endif %}
{% else %}
<p>(Du hast noch an keiner Abstimmung teilgenommen)</p>
{% endfor %}
2022-11-05 09:51:32 +01:00
</body>
</html>