|
@@ -49,7 +49,7 @@ discard block |
|
|
block discarded – undo |
|
49
|
49
|
$page->body .= '<div class="row"><h3>Filled Shifts</h3></div><div class="row"><table class="table"><tr><th>Role</th><th>Participant</th></tr>'; |
|
50
|
50
|
foreach($filled as $shift) |
|
51
|
51
|
{ |
|
52
|
|
- $page->body.= '<tr><td>'.$shift->role->display_name.'</td><td>'.$shift->webParticipantName.'</td></tr>'; |
|
|
52
|
+ $page->body .= '<tr><td>'.$shift->role->display_name.'</td><td>'.$shift->webParticipantName.'</td></tr>'; |
|
53
|
53
|
} |
|
54
|
54
|
$page->body .= '</table></div>'; |
|
55
|
55
|
$page->body .= '<div class="row"><h3>Unfilled Shifts</h3></div><div class="row"><table class="table"><tr><th>Role</th><th>Sign Up</th></tr>'; |
|
@@ -60,7 +60,7 @@ discard block |
|
|
block discarded – undo |
|
60
|
60
|
{ |
|
61
|
61
|
$cell = '<button type="button" class="btn btn-primary" onClick="signUp(\''.$shift->_id.'\');">Sign Up</button>'; |
|
62
|
62
|
} |
|
63
|
|
- $page->body.= '<tr><td>'.$shift->role->display_name.'</td><td>'.$cell.'</td></tr>'; |
|
|
63
|
+ $page->body .= '<tr><td>'.$shift->role->display_name.'</td><td>'.$cell.'</td></tr>'; |
|
64
|
64
|
} |
|
65
|
65
|
$page->body .= '</table></div>'; |
|
66
|
66
|
$page->printPage(); |
Please login to merge, or discard this patch.