diff --git a/aleksis/apps/paweljong/templates/paweljong/event/register.html b/aleksis/apps/paweljong/templates/paweljong/event/register.html deleted file mode 100644 index 0613fb71937f1bed58211b4bd986b5d862afae0d..0000000000000000000000000000000000000000 --- a/aleksis/apps/paweljong/templates/paweljong/event/register.html +++ /dev/null @@ -1,116 +0,0 @@ -{% 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 %} diff --git a/aleksis/apps/paweljong/templates/paweljong/event/register_additional.html b/aleksis/apps/paweljong/templates/paweljong/event/register_additional.html deleted file mode 100644 index c89b1d30c7530af5e7b1aeee9c684865d948d828..0000000000000000000000000000000000000000 --- a/aleksis/apps/paweljong/templates/paweljong/event/register_additional.html +++ /dev/null @@ -1,55 +0,0 @@ -{% 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 %}