Private
Public Access
1
0

confirmation emails

This commit is contained in:
Sander Roosendaal
2017-02-10 13:54:23 +01:00
parent fa86c0c9d5
commit 88217f05ce
5 changed files with 233 additions and 7 deletions

View File

@@ -23,16 +23,22 @@
<div class="grid_6 alpha">
<p>
<h2>Members</h2>
<table width="100%" class="listtable">
<table width="70%" class="listtable">
<thead>
<tr>
<th>Name</th>
<th>&nbsp;</th>
</tr>
</thead>
<tbody>
{% for member in members %}
<tr>
<td> {{ member.user.first_name }} {{ member.user.last_name }}</td>
{% if team.manager == user %}
<td><a class="button red small" href="/rowers/me/team/{{ team.id }}/drop/{{ member.user.id }}">Drop</a></td>
{% else %}
<td>&nbsp;</td>
{% endif %}
</tr>
{% endfor %}
</tbody>