-
Notifications
You must be signed in to change notification settings - Fork 0
/
fat.html
55 lines (50 loc) · 1.13 KB
/
fat.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
Users:
<span ng-repeat="(key, user) in users">
<a ui-sref="fat({ userId: '{{key}}' })">{{key}}</a>
</span>
<h2>Body Fat Log of {{id}}</h2>
<div class="legend">
<span class="ct-series-a"><i class="fa fa-square"></i> Chin-ups</span>
<span class="ct-series-b"><i class="fa fa-square"></i> Push-ups</span>
<span class="ct-series-c"><i class="fa fa-square"></i> Pull-ups</span>
<span class="ct-series-d"><i class="fa fa-square"></i> Dips</span>
</div>
<div id="chart1" class="ct-chart"></div>
<table class="table" id="strength_table">
<tr>
<th>
Date
</th>
<th>
Chin-ups
</th>
<th>
Push-ups
</th>
<th>
Pull-ups
</th>
<th>
Dips
</th>
<th>
</th>
</tr>
<tr ng-repeat="strength in strengths" on-finish-render-filters>
<td>
{{strength.date}}
</td>
<td>
{{strength.chinups}}
</td>
<td>
{{strength.pushups}}
</td>
<td>
{{strength.pullups}}
</td>
<td>
{{strength.dips}}
</td>
</tr>
</table>