{% extends "newbase.html" %} {% block title %}Team {% endblock %} {% block main %}

{{ team.name }}

  • {{ team.notes }}

    Manager: {{ team.manager.first_name }} {{ team.manager.last_name }}

  • {% if hasrequested %}

    You have requested access to this team

    {% elif team not in myteams and team not in memberteams %}

    You can request access to this team. By requesting access, you agree to the Privacy Policy regarding team functionality. You agree to share your workout data (except workouts marked as "private") to all team members and the team manager. You also grant the team manager access to your heart rate and power zone settings, as well as your functional threshold information. You are granting the team manager permission to edit your workouts.

    Join A request will be sent to the team manager {% endif %}
  • Members

    {% for member in members %} {% if team.manager == user %} {% else %} {% endif %} {% endfor %}
    Name  
    {{ member.user.first_name }} {{ member.user.last_name }} Drop{{ member.user.first_name }} {{ member.user.last_name }}  
  • {% if team.manager == user %}

    Use the form to add a new user. You can either select a user from the list of your existing club members who are not on this team yet, or you can type the user's email address, which also works for users who have not registered to the site yet.

    {% if inviteform.errors %}

    Please correct the error{{ inviteform.errors|pluralize }} below.

    {% endif %}
    {{ inviteform.as_table }}
    {% csrf_token %}
    {% else %}

     

    {% endif %}
  • {% if team.manager == user %}

    Message

    Use this form to send a message to all team members by email.

    {{ groupmessageform.as_table }}
    {% csrf_token %}
    {% endif %}
{% endblock %} {% block sidebar %} {% include 'menu_teams.html' %} {% endblock %}