34 lines
801 B
HTML
34 lines
801 B
HTML
{% extends "newbase.html" %}
|
|
{% load static %}
|
|
{% load rowerfilters %}
|
|
|
|
{% block title %}Remove Athlete {% endblock %}
|
|
|
|
{% block main %}
|
|
<h1>Confirm removing {{ athlete.user.first_name }} {{ athlete.user.last_name }}</h1>
|
|
|
|
<ul class="main-content">
|
|
<li class="grid_2">
|
|
<p>This will remove this rower from your list of athlete. The athlete can still
|
|
be in one of your training groups, but you cannot upload workouts, run analysis
|
|
or edit settings on their behalf.
|
|
</p>
|
|
|
|
|
|
<p>
|
|
<a class="button green small" href="/rowers/me/teams">Cancel</a>
|
|
</p>
|
|
|
|
<p>
|
|
<a class="button red small" href="/rowers/coaches/{{ athlete.id }}/drop">Drop Athlete</a>
|
|
</p>
|
|
</li>
|
|
</ul>
|
|
|
|
|
|
{% endblock %}
|
|
|
|
{% block sidebar %}
|
|
{% include 'menu_teams.html' %}
|
|
{% endblock %}
|