Private
Public Access
1
0
Files
rowsandall/rowers/templates/dropathleteconfirm.html
2019-02-17 10:36:59 +01:00

34 lines
806 B
HTML

{% extends "newbase.html" %}
{% load staticfiles %}
{% 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 %}