{% 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 %}
{% 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 %}
{% endblock %}
{% endif %}
{% block location %}
{% 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 %}
{% endblock %}
{% block description %}
{% trans "Beschreibung" %}:
{{ job.type.description|richtext|safe }}
{% if job.additional_description %}
{{ job.additional_description|richtext|safe }}
{% endif %}
{% endblock %}
{% block contact %}
{% trans "Kontakt" %}:
{% for contact in job.contacts %}
{{ contact.to_html }}
{% endfor %}
{% endblock %}
{% block participants %}
{% trans "Dabei sind" %}:
{% if job.occupied_slots == 0 and job.free_slots != 0 %}
{% trans "Noch niemand" %} 🥺
{% else %}
{% include "juntagrico/job/snippets/participant_list.html" %}
{% endif %}