First steps with the new registration app

This commit is contained in:
2025-09-09 21:06:53 +02:00
parent c40bd5fceb
commit ada1a45df4
52 changed files with 59724 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
{% extends "base.html" %}
{% block content %}
<div class="card">
<div class="card-body">
<h5 class="card-title">{{ event.title }}</h5>
<p class="card-text">{{ event.description }}</p>
<a href="event/{{ event.id }}" class="btn btn-primary">Zur Anmeldung</a>
</div>
</div>
{% endblock %}