Skip to content
Snippets Groups Projects
Commit b7144bdb authored by Tom Teichler's avatar Tom Teichler :beers:
Browse files

Remove old registration templates

parent 9113fe22
No related branches found
No related tags found
1 merge request!1Reformat and cleanup
{% extends "core/base.html" %}
{% load material_form i18n %}
{% block page_title %}{% blocktrans %}Event registration{% endblocktrans %}{% endblock %}
{% block browser_title %}{% blocktrans %}Event registration{% endblocktrans %}{% endblock %}
{% block content %}
<h5>
{% blocktrans %}Registration for{% endblocktrans %} {{ event.display_name }}
</h5>
<div class="row">
<div class="col s12 m6">
<div class="card info">
<div class="card-content">
<span class="card-title">{% blocktrans %}Information for parents{% endblocktrans %}</span>
<p>
{% blocktrans %}
Please go through the registration with your child. It is important
to us to train important skills in dealing with the Internet and
responsibility in general with the registration.
{% endblocktrans %}
</p>
</div>
<div class="card-content">
<span class="card-title">{% blocktrans %}Information for children{% endblocktrans %}</span>
<p>
{% blocktrans %}
Please read everything carefully with your parents and then send your
registration together with them!
{% endblocktrans %}
</p>
</div>
</div>
</div>
<div class="col s12 m6">
<div class="card info">
<div class="card-content">
<span class="card-title">{% blocktrans %}Information about the event{% endblocktrans %}</span>
<p>
{% blocktrans %}
Please read the
{% endblocktrans %}
<a href="{{ event.website }}">
{% blocktrans %}
website of the event
{% endblocktrans %}
</a>
{% blocktrans %}
carefully together with your parents.
{% endblocktrans %}
</p>
<ul>
<li>
{% blocktrans %}
The event will take place from
{% endblocktrans %}
{{ event.date_event }}
{% blocktrans %}
at
{% endblocktrans %}
{{ event.l }}
</li>
<li>
{% blocktrans %}
Registration is possible until
{% endblocktrans %}
{{ event.date_registration }};
{% blocktrans %}
the number of participants is limited to
{% endblocktrans %}
{{ event.max_participants }}
{% blocktrans %}
participants
{% endblocktrans %}.
</li>
<li>
{% blocktrans %}
The participation fee is
{% endblocktrans %}
{{ event.cost }} €
{% blocktrans %}
and must be paid in advance and within 7 days after receipt of the
invoice. Cancellation with reimbursement is possible until
{% endblocktrans %}
{{ event.date_retraction }}
{% blocktrans %}
and only for good reason.
{% endblocktrans %}
</li>
</ul>
</div>
</div>
</div>
</div>
<form method="post">
{% csrf_token %}
{% form form=register_form %}{% endform %}
{% include "core/partials/save_button.html" %}
</form>
{% endblock %}
{% extends "ticdesk/base_with_info_sidebar.html" %}
{% load i18n %}
{% block page_title %}{% blocktrans %}Zusätzliche Angaben zur Veranstaltungsanmeldung{% endblocktrans %}{% endblock %}
{% block content_info_children %}
{% blocktrans %}
Bitte lies dir mit deinen Eltern gemeinsam alles genau durch und schicke
deine Anmeldung dann mit ihnen gemeinsam ab!
{% endblocktrans %}
{% endblock %}
{% block content_info_parents %}
{% blocktrans %}
Bitte gehen Sie die Anmeldung mit Ihrem Kind gemeinsam durch. Uns ist es
wichtig, schon mit der Anmeldung wichtige Kompetenzen im Umgang mit dem
Internet und Verantwortung im Allgemeinen zu trainieren.
{% endblocktrans %}
{% endblock %}
{% block content %}
<h5>
{% blocktrans %}Zusätzliche Angaben zu{% endblocktrans %} {{ event.display_name }}
</h5>
{% if error %}
<div class="alert alert-danger">
<div class="alert-heading">
{% blocktrans %}Fehler{% endblocktrans %}
</div>
<hr>
<p>
{{ error }}
</p>
</div>
{% elif success %}
<div class="alert alert-success">
<div class="alert-heading">
{% blocktrans %}Anmeldung erfolgreich{% endblocktrans %}
</div>
<hr>
<p>
{% blocktrans %}
Du hast deien Angaben erfolgreich eingesendet.
{% endblocktrans %}
</p>
</div>
{% else %}
<form method="post">
{% csrf_token %}
{% bootstrap_form register_form %}
<input type="submit" value="{% blocktrans %}Absenden{% endblocktrans %}" />
</form>
{% endif %}
{% endblock %}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment