{% extends "base.html" %} {% load config %} {% block page_title %}

{{ job.type.name }}

{% endblock %} {% block content %}
Zeitpunkt:
{{ job.time |date:"l, d.m.Y, H:i" }} - {{ job.end_time|date:"H:i" }}
{% if job_is_in_past %} (vor {{ job.end_time|timesince }}) {% elif job_is_running %} (seit {{ job.time|timesince }}) {% else %} (in {{ job.time|timeuntil }}) {% endif %}

Status:
{% for i in slotrange %} {% if i < number_of_participants %} {% else %} {% endif %} {% endfor %}

{% if job.multiplier != 1 %}
{% config "assignments_string" %}:
Du erhälst für diesen Job das {{ job.multiplier }} fachen an {% config "assignments_string" %} gutgeschrieben.

{% endif %} {% if job.extras.strip %}
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 %}
Ort:
{{ job.type.location }} (Karte)

Beschreibung:
{{ job.type.description }}

{% if admin %}
Kontaktieren:
{% csrf_token %}

{% endif %}
Dabei sind:
{% if number_of_participants == 0 and not job_fully_booked %} Noch niemand :-( {% else %} {% endif %}

{% if can_subscribe %}
Ich trage mich ein:
{% csrf_token %} {% if allowed_additional_participants|length > 1 %}

{% else %} {% endif %} {% for extra in job.empty_per_job_extras %} {{ extra.extra_type.name }}
{% endfor %} {% for extra in job.per_member_extras %} {{ extra.extra_type.name }}
{% endfor %}
{% endif %} {% endblock %} {% block scripts %} {% endblock %}