Skip to content

Instantly share code, notes, and snippets.

@danielgustafsson
Created October 4, 2017 07:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save danielgustafsson/dbe9af3fd1deeb046371cbc253e83876 to your computer and use it in GitHub Desktop.
Save danielgustafsson/dbe9af3fd1deeb046371cbc253e83876 to your computer and use it in GitHub Desktop.
diff --git a/template/confreg/admin_waitlist.html b/template/confreg/admin_waitlist.html
index 098cccf..7628f37 100644
--- a/template/confreg/admin_waitlist.html
+++ b/template/confreg/admin_waitlist.html
@@ -38,6 +38,10 @@ function showDialog(id) {
<td>Confirmed registrations</td>
<td>{{num_confirmedregs}}</td>
</tr>
+ <tr>
+ <td>Attendees on the waitlist</td>
+ <td>{{waitlist|length}}</td>
+ </tr>
<tr>
<td>Pending registrations with invoice</td>
<td>{{num_invoicedregs}}</td>
@@ -50,6 +54,10 @@ function showDialog(id) {
<td>Active offers from the waitlist</td>
<td>{{num_waitlist_offered}}</td>
</tr>
+ <tr>
+ <td>Offers accepted from the waitlist</td>
+ <td>{{waitlist_cleared|length}}</td>
+ </tr>
<tr>
<td>Total registrations including offered and invoiced</td>
<td>{{num_total}}</td>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment