{% extends 'base.html' %} {% load commonmark %} {% load teams_tags %} {% block title %} Teams | {{ block.super }} {% endblock %} {% block content %}

{{ camp.title }} Teams

This is a list of the teams for {{ camp.title }}. To join a team just press the Join button, but please put some info in your profile first, so the team responsible has some idea who you are.

You can also leave a team of course, but please let the team responsible know why :)

Team memberships need to be approved by a team responsible. You will receive a message when your membership has been approved.

At {{ camp.title }} all organisers and volunteers buy full tickets like everyone else. At future events our budget may allow for discounts or free tickets for volunteers, but currently it does not.

We currently have {{ teams.count }} teams for {{ camp.title }}:

{% if teams %} {% if request.user.is_authenticated %} {% endif %} {% for team in teams %} {% if request.user.is_authenticated %} {% endfor %}
Name Description Responsible Members TasksMember? Actions
{{ team.name }} Team {{ team.description|unsafecommonmark|truncatewords:50 }} {% for resp in team.responsible_members.all %} {{ resp.profile.get_public_credit_name }}{% if not forloop.last %},{% endif %}
{% endfor %}
{{ team.members.count }}
{% if team.needs_members %}(more needed){% endif %}
{{ team.tasks.count }}
{% membershipstatus request.user team True %}
Details {% if request.user in team.responsible_members.all %} Manage {% endif %} {% if request.user in team.members.all %} Leave {% else %} {% if team.needs_members %} Join {% endif %} {% endif %}
{% endif %}
{% else %}

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

{% endif %} {% endblock %}