Skip to content

Commit 9eda102

Browse files
committed
added skipped weeks and punt marking
removed duplicate colon
1 parent 745087a commit 9eda102

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

templates/users.tmpl

+10
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
<th>Twitter</th>
55
<th>Blog link</th>
66
<th>Start Week</th>
7+
<th>Skipped Weeks</th>
78
</tr>
89
% for u in sorted(userlist, key=lambda u:u.username):
910
<tr>
@@ -23,6 +24,15 @@
2324
% endif
2425
</td>
2526
<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+
2636

2737
</tr>
2838
% endfor

templates/week.tmpl

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Results for week beginning ${week_start.strftime("%F")}
5151
% endif
5252

5353
% if skipped_users:
54-
<h2>Who is currently skipped::</h2>
54+
<h2>Who is currently skipped:</h2>
5555
<ul>
5656
% for u in sorted(skipped_users, key=lambda u:u.username):
5757
<li class="user"><strong>${u.name} </strong> \

0 commit comments

Comments
 (0)