hrefs added trailing slashes
This commit is contained in:
@@ -16,13 +16,13 @@
|
||||
<p>You have requested access to this team</p>
|
||||
{% elif team not in myteams and team not in memberteams %}
|
||||
<p>You can request access to this team. By requesting access, you
|
||||
agree to the <a href="/rowers/legal">Privacy Policy</a> regarding
|
||||
agree to the <a href="/rowers/legal/">Privacy Policy</a> regarding
|
||||
team functionality. You agree to share your workout data (except
|
||||
workouts marked as "private") to all team members and the team manager.
|
||||
You also grant the team manager access to your heart rate and power
|
||||
zone settings, as well as your functional threshold information. You
|
||||
are granting the team manager permission to edit your workouts.</p>
|
||||
<a class="button green small" href="/rowers/team/{{ team.id }}/requestmembership/{{ user.id }}">Join</a>
|
||||
<a class="button green small" href="/rowers/team/{{ team.id }}/requestmembership/{{ user.id }}/">Join</a>
|
||||
<span class="tooltiptext">A request will be sent to the team manager</span>
|
||||
{% endif %}
|
||||
</li>
|
||||
@@ -38,9 +38,9 @@
|
||||
<tbody>
|
||||
{% for member in members %}
|
||||
<tr>
|
||||
<td><a href="/rowers/rower/edit/{{ member.id }}"> {{ member.user.first_name }} {{ member.user.last_name }}</a></td>
|
||||
<td><a href="/rowers/rower/edit/{{ member.id }}/"> {{ member.user.first_name }} {{ member.user.last_name }}</a></td>
|
||||
{% if team.manager == user %}
|
||||
<td><a class="button red small" href="/rowers/me/team/{{ team.id }}/drop/{{ member.user.id }}">Drop</a></td>
|
||||
<td><a class="button red small" href="/rowers/me/team/{{ team.id }}/drop/{{ member.user.id }}/">Drop</a></td>
|
||||
{% else %}
|
||||
<td> </td>
|
||||
{% endif %}
|
||||
|
||||
Reference in New Issue
Block a user