{% extends 'base.html' %} {% load commonmark %} {% block title %} Teams | {{ block.super }} {% endblock %} {% block content %} {% if teams %}
Name | Description | Area | Responsible | Members | Actions | |
---|---|---|---|---|---|---|
{{ 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.is_authenticated %}{% if request.user in team.members.all %} Leave {% else %} {% if team.needs_members %} Join {% else %} Team does not need members {% endif %} {% endif %} | {% else %}Login to join! | {% endif %}