{% spaceless %}
{% for i in slotrange %}
{% if i < number_of_participants %}
{% else %}
{% endif %}
{% endfor %}
{% endspaceless %}
{% endif %}
{% if job.multiplier == 0 %}
{% vocabulary "assignment_pl" %}:
{% blocktrans trimmed with jm=job.multiplier %}
Du erhältst für diese Veranstaltung keine {{ v_assignment_pl }} gutgeschrieben.
{% endblocktrans %}
{% elif job.multiplier != 1 %}
{% vocabulary "assignment_pl" %}:
{% blocktrans trimmed with jm=job.multiplier %}
Du erhältst für diesen Einsatz das {{ jm }}-Fache an {{ v_assignment_pl }} gutgeschrieben.
{% endblocktrans %}
{% endif %}
{% if job.extras.strip %}
{% trans "Extras" %}:
{% for extra in job.empty_per_job_extras %}
{{ extra.extra_type.display_empty|safe }}
{% endfor %}
{% for extra in job.full_per_job_extras %}
{{ extra.extra_type.display_full|safe }}
{% endfor %}
{% endif %}
{% trans "Ort" %}:
{{ job.type.location.to_html|safe }}
{% if job.type.location.google_maps_query %}
{% if job.type.location.has_coordinates %}
{% trans "Karte" %} -
{% endif %}
{% trans "Wegbeschreibung" %}
{% endif %}
{% trans "Beschreibung" %}:
{{ job.type.description|richtext|safe }}
{% if job.additional_description %}
{{ job.additional_description|richtext|safe }}
{% endif %}
{% if can_contact %}
{% trans "Kontaktieren" %}:
{% endif %}
{% trans "Kontakt" %}:
{% for contact in job.contacts %}
{{ contact.to_html }}
{% endfor %}
{% trans "Dabei sind" %}:
{% if number_of_participants == 0 and not job_fully_booked %}
{% trans "Noch niemand" %} 🥺
{% else %}
{% for participant, url, reachable, extras in participants_summary %}