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.
31 lines
648 B
HTML
31 lines
648 B
HTML
{% extends "members/base.html" %}
|
|
{% load i18n %}
|
|
{% load static %}
|
|
|
|
{% block title %}
|
|
{% trans "Echo" %}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<link rel="stylesheet" href="{% static "ludwigsburgalpin/termine.css" static %}">
|
|
|
|
<h1>{% trans "Echo" %}</h1>
|
|
|
|
<p>{% trans "Thanks for echoing back. Here is your current data:" %}</p>
|
|
|
|
{% if error_message %}
|
|
<p><b>{{ error_message }}</b></p>
|
|
{% endif %}
|
|
|
|
<form action="" method="post">
|
|
<table class="termine">
|
|
{% csrf_token %}
|
|
{{form}}
|
|
</table>
|
|
<input type="hidden" name="key" value="{{ key }}">
|
|
<p><input type="submit" value="{% trans "submit" %}"/></p>
|
|
</form>
|
|
|
|
{% endblock %}
|