{% extends 'base.html' %} {% load commonmark %} {% block title %} Teams | {{ block.super }} {% endblock %} {% block content %}
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 %}Name | Description | Responsible | Members | Actions | |
---|---|---|---|---|---|
{{ team.name }} Team | {{ team.description|unsafecommonmark|truncatewords:50 }} |
{% 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 %}