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

{{ team.name }}

{% endblock %} {% block content %}
Beschreibung:
{{ team.description }}

Verantwortlicher:
{{ team.coordinator.first_name }} {{ team.coordinator.last_name }}
{% if team.email is not None%} {{ team.email }}
{% else %} {{ team.coordinator.email }}
{% endif %}

Kommende Termine

{% include "snippet_jobs.html" %} {% if jobs|length <= 0 %} Keine Jobs ausgeschrieben {% endif %} {% endblock %}