File tree 2 files changed +11
-1
lines changed
2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change 4
4
<th>Twitter</th>
5
5
<th>Blog link</th>
6
6
<th>Start Week</th>
7
+ <th>Skipped Weeks</th>
7
8
</tr>
8
9
% for u in sorted(userlist, key=lambda u:u.username):
9
10
<tr>
23
24
% endif
24
25
</td>
25
26
<td align="left" valign="top"> ${u.start_de} </td>
27
+ <td align="left" valign="top">
28
+ % if u.end:
29
+ Punted<br>
30
+ % endif
31
+ % if u.skip:
32
+ ${u.skip}
33
+ % endif
34
+ </td>
35
+
26
36
27
37
</tr>
28
38
% endfor
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ Results for week beginning ${week_start.strftime("%F")}
51
51
% endif
52
52
53
53
% if skipped_users:
54
- <h2>Who is currently skipped:: </h2>
54
+ <h2>Who is currently skipped:</h2>
55
55
<ul>
56
56
% for u in sorted(skipped_users, key=lambda u:u.username):
57
57
<li class="user"><strong>${u.name} </strong> \
You can’t perform that action at this time.
0 commit comments