{% extends "base.html" %} {% load humanize %} {% load striplogintoken %} {% block title %}Helfidetails{% endblock %} {% block content %}

{{ helper.name }}

Telefon: {{ helper.phone }}
Schichten
{% for reg in helper.shiftregistration_set.all %} {% include 'partials/shift_list_item.html' with shift=reg.shift %} {% endfor %}
Nachrichtenverlauf
{% for content, created_at, read, incoming in history %}
{{ content | striplogintoken }} {% if created_at %}
{{ created_at | naturaltime }}
{% endif %}
{% endfor %}
{% csrf_token %}
{% csrf_token %} {% for field in form %}
{{ field }}
{% for error in field.errors %}

{{ error }}

{% endfor %}
{% endfor %}
{% endblock %}