You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
601 B
HTML
26 lines
601 B
HTML
{% extends "ludwigsburgalpin/base.html" %}
|
|
{% load i18n %}
|
|
{% load static %}
|
|
|
|
{% block content %}
|
|
|
|
<link rel="stylesheet" href="{% static "ludwigsburgalpin/termine.css" static %}">
|
|
|
|
<h1>Ludwigsburg Alpin Termine</h1>
|
|
|
|
<p>Hier kannst du einen Termin für deine Gruppe hinzufügen. Pass bitte auf, du kannst ihn danach nicht mehr ändern!</p>
|
|
|
|
{% if error_message %}
|
|
<p><b>{{ error_message }}</b></p>
|
|
{% endif %}
|
|
|
|
<form action="" method="post">
|
|
<table class="termine">
|
|
{% csrf_token %}
|
|
{{ form }}
|
|
</table>
|
|
<p><input type="submit" value="Abschicken"/></p>
|
|
</form>
|
|
|
|
{% endblock %}
|