{% extends 'base.html' %} {% load commonmark %} {% block title %} Teams | {{ block.super }} {% endblock %} {% block content %} {% if teams %} {% if request.user.is_authenticated %} {% endif %} {% for team in teams %} {% if request.user.is_authenticated %} {% endif %} {% endfor %}
Name Description Area Responsible MembersAction
{{ team.name }} Team {{ team.description|unsafecommonmark|truncatewords:50 }} {{ team.area.name }} Area {% for resp in team.responsible.all %} {{ resp.get_full_name|default:"Unnamed" }}{% if not forloop.last %},{% endif %}
{% endfor %}
{{ team.members.count }} {% if request.user in team.members.all %} Leave {% else %} {% if team.needs_members %} Join {% else %} Team does not need members {% endif %} {% endif %}
{% else %}

No teams for {{ camp.title }} yet!

{% endif %} {% endblock %}