MIGRATE: FIX/UPD: fixed a typo in model fields verbose name. improved
registration manager.
This commit is contained in:
@@ -242,7 +242,7 @@
|
||||
{% csrf_token %}
|
||||
<input type="hidden" name="registration" value="{{ registration.id }}">
|
||||
<button type="submit" name="action" value="accept_registration"
|
||||
class="btn btn-link no-padding" title="Teilnehmer hinzufügen">
|
||||
class="btn btn-link no-padding" title="zur Teilnehmerliste hinzufügen">
|
||||
<span class="text-success">{% bootstrap_icon 'plus-sign' %}</span>
|
||||
</button>
|
||||
|
||||
@@ -271,7 +271,7 @@
|
||||
{% endif %}
|
||||
</form>
|
||||
{% empty %}
|
||||
{% trans 'Keine unbestätigten Anmeldungen vorhanden' %}
|
||||
{% trans 'Keine unbearbeiteten Anmeldungen vorhanden' %}
|
||||
{% endfor %}
|
||||
</div>
|
||||
</div>
|
||||
@@ -283,7 +283,7 @@
|
||||
<a role="button" href="#collapseAddParticipant"
|
||||
data-toggle="collapse"
|
||||
aria-expanded="true" aria-controls="collapseAddParticipant">
|
||||
<span class="caret"></span> {% trans 'weiteren Teilnehmer eintragen' %}
|
||||
<span class="caret"></span> {% trans 'weiteren Teilnehmer hinzufügen' %}
|
||||
</a>
|
||||
</h5>
|
||||
</div>
|
||||
@@ -296,12 +296,13 @@
|
||||
{% csrf_token %}
|
||||
{% include './includes/participant_form.html' with form=create_participant_form %}
|
||||
<button type="submit" name="action" value="create_participant" class="btn btn-success">
|
||||
{% bootstrap_icon 'plus-sign' %} {% trans 'Teilnehmer hinzufügen' %}
|
||||
{% bootstrap_icon 'plus-sign' %} {% trans 'zur Teilnehmerliste hinzufügen' %}
|
||||
</button>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{% if participants %}
|
||||
{% for form in participant_formset %}
|
||||
{% with participant=form.instance %}
|
||||
{% with position=participant.position %}
|
||||
@@ -332,19 +333,24 @@
|
||||
<span class="text-info">{% bootstrap_icon 'triangle-bottom' %}</span>
|
||||
</button>
|
||||
<button name="action" value="remove_participant"
|
||||
title="{% trans 'Teilnehmer löschen' %} ({% trans 'Spätestens am' %} {{ participant.purge_at|date:'d. F Y'}})"
|
||||
title="{% trans 'Teilnehmer jetzt löschen' %}
|
||||
({% trans 'erfolgt automatisch am' %} {{ participant.purge_at|date:'d. F Y'}})"
|
||||
class="btn btn-link no-padding">
|
||||
<span class="text-danger">{% bootstrap_icon 'remove-circle' %}</span>
|
||||
</button>
|
||||
|
||||
{% if participant.paid %}
|
||||
{% if event.charge and participant.paid %}
|
||||
<span class="text-success" title="Geldeingang bestätigt">
|
||||
{% bootstrap_icon 'piggy-bank' %}
|
||||
</span>
|
||||
{% else %}
|
||||
{% elif event.charge %}
|
||||
<span class="text-danger" title="Geldeingang unbestätigt">
|
||||
{% bootstrap_icon 'piggy-bank' %}
|
||||
</span>
|
||||
{% else %}
|
||||
<span class="hidden" title="Keine Teilnehmergebühr gefordert">
|
||||
{% bootstrap_icon 'piggy-bank' %}
|
||||
</span>
|
||||
{% endif %}
|
||||
</form>
|
||||
</div>
|
||||
@@ -370,10 +376,17 @@
|
||||
{% endwith %}
|
||||
{% endwith %}
|
||||
{% endfor %}
|
||||
{% else %}
|
||||
<div class="panel panel-info">
|
||||
<div class="panel-body">
|
||||
<span class="text-info">{% trans 'Du hast noch keine Teilnehmer hinzugefügt.' %}</span>
|
||||
</div>
|
||||
</div>
|
||||
{% endif %}
|
||||
{% if participant_emails %}
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-body">
|
||||
<strong>{% trans 'E-Mail-Adressen' %}</strong> <small>(für Copy-Paste)</small><br />
|
||||
<strong>{% trans 'E-Mail-Adressen' %}</strong> <small>({% trans 'für Copy-Paste' %})</small><br />
|
||||
<div class="well well-sm">{{ participant_emails }}</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user