{% extends 'base.html' %} {% load i18n staticfiles tz stats %} {% block title %}{% trans 'Join Squad' %} / {{ block.super }}{% endblock title %} {% block nav_tabs %} {% include 'inline/profile_tabs.html' %} {% endblock nav_tabs %} {% block content %}
{% trans 'Join Squad' %}
{% if squad_member %} {% trans 'Are you already a member of the squad' %} {{ squad_member.squad.name }}. {% elif bad_join_url %} {% trans 'You use the wrong url for joining the squad. Request the correct url from the admin of your squad.' %} {% else %} {% trans 'Confirm that you want to join the squad' %} {{ squad.name }}. {% endif %}
{% if not squad_member and not bad_join_url %}
{% csrf_token %}
{% endif %}
{% endblock content %}