{% 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. In the future our budget may allow for discounts or free tickets for volunteers, but not this year. However: Please let us know if you can't afford a ticket - we will figure something out!

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 MembersMember? Actions
{{ team.name }} Team {{ team.description|unsafecommonmark|truncatewords:50 }} {% for resp in team.responsible.all %} {{ resp.profile.approved_public_credit_name|default:"Unnamed" }}{% if not forloop.last %},{% endif %}
{% endfor %}
{{ team.approvedmembers.count }}
{% if team.needs_members %}(more needed){% endif %}
{% membershipstatus request.user team as membership_status %} {% if membership_status == 'Membership Pending' %} {% else %} {% if membership_status == 'Member' %} {% else %} {% endif %} {% endif %} {% if request.user in team.members.all %} Leave {% else %} {% if team.needs_members %} Join {% endif %} {% endif %} {% if request.user in team.responsible.all %} Manage {% endif %} {% endif %}
{% else %}

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

{% endif %} {% endblock %}