Private
Public Access
1
0

updated layout

This commit is contained in:
Sander Roosendaal
2017-04-05 10:51:54 +02:00
parent f76e3efa32
commit 6366c89911
6 changed files with 65 additions and 38 deletions

View File

@@ -27,7 +27,7 @@
</table>
{% csrf_token %}
</div>
<div class="grid_2 suffix_6 omega">
<div class="grid_2 suffix_6 alpha">
<input name='daterange' class="button green" type="submit" value="Submit"> </form>
</div>
@@ -42,10 +42,10 @@
{% endif %}
{% if workouts %}
<table width="100%" class="listtable">
<table width="100%" class="listtable shortpadded">
<thead>
<tr>
<th> Date</th>
<th style="width:80px"> Date</th>
<th> Time</th>
<th> Name</th>
<th> Type</th>
@@ -54,8 +54,8 @@
<th> Avg HR </th>
<th> Max HR </th>
{% if not team %}
<th> Delete</th>
<th> Export</th>
<th> &nbsp;</th>
<th> &nbsp;</th>
{% else %}
<th colspan="2">
Owner
@@ -89,17 +89,17 @@
<td> {{ workout.maxhr }} </td>
{% if not team %}
<td>
<a class="button red small" href="/rowers/workout/{{ workout.id }}/deleteconfirm">Delete
</td>
<td>
<a class="button blue small" href="/rowers/workout/{{ workout.id }}/export">Export</a>
<a class="small" href="/rowers/workout/{{ workout.id }}/export">Export</a>
</td>
{% else %}
<td colspan="2">
{{ workout.user.user.first_name }} {{ workout.user.user.last_name }}
</td>
{% endif %}
<td> <a class="button blue small" href="/rowers/workout/{{ workout.id }}/flexchart">Flex</a> </td>
<td> <a class="small" href="/rowers/workout/{{ workout.id }}/flexchart">Flex</a> </td>
<td>
<a class="small" href="/rowers/workout/{{ workout.id }}/deleteconfirm">Delete
</td>
</tr>
@@ -116,7 +116,9 @@
{% if team %}
<div class="grid_4" id="teambuttons">
<div class="grid_3 alpha">
<a class="button gray small" href="/rowers/team-compare-select/team/{{ team.id }}/">Multi Workout Compare</a>
<p>
&nbsp;
</p>
</div>
</div>
{% endif %}