36 lines
835 B
HTML
36 lines
835 B
HTML
{% extends "newbase.html" %}
|
|
{% load static %}
|
|
{% load rowerfilters %}
|
|
|
|
{% block title %}Remove Coach {% endblock %}
|
|
|
|
{% block main %}
|
|
<h1>Confirm removing {{ coach.user.first_name }} {{ coach.user.last_name }}</h1>
|
|
|
|
<ul class="main-content">
|
|
<li class="grid_2">
|
|
<p>This will remove this coach from your list of coaches.
|
|
You can still be in this coach's training groups, but she/he is losing the ability to
|
|
upload workouts for you, run analysis
|
|
or edit your settings on your behalf.
|
|
</p>
|
|
|
|
|
|
<p>
|
|
<a class="button green small" href="/rowers/me/teams">Cancel</a>
|
|
</p>
|
|
|
|
<p>
|
|
<a class="button red small" href="/rowers/coaches/{{ coach.id }}/dropcoach">Drop Coach
|
|
</a>
|
|
</p>
|
|
</li>
|
|
</ul>
|
|
|
|
|
|
{% endblock %}
|
|
|
|
{% block sidebar %}
|
|
{% include 'menu_teams.html' %}
|
|
{% endblock %}
|