diff options
author | Sawyer Bergeron <sbergeron@iol.unh.edu> | 2022-01-28 14:47:02 -0500 |
---|---|---|
committer | Sawyer Bergeron <sbergeron@iol.unh.edu> | 2022-01-28 14:47:02 -0500 |
commit | 86e61cf048518963776d12ead4cce613d16226f2 (patch) | |
tree | a6b6e89f935a0c8bc35b47e6c69d8ff627faa334 | |
parent | eb0016bdc04d0b61379209376f96172a2715c799 (diff) |
Remove pluralization block that was throwing an error in prod (unregistered tag)
Signed-off-by: Sawyer Bergeron <sbergeron@iol.unh.edu>
Change-Id: Id3e8d66fb3af37ff1367118e78844447b9a00682
-rw-r--r-- | src/templates/base/notifier/new_booking.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/templates/base/notifier/new_booking.html b/src/templates/base/notifier/new_booking.html index 6d3c344..d886f40 100644 --- a/src/templates/base/notifier/new_booking.html +++ b/src/templates/base/notifier/new_booking.html @@ -112,7 +112,7 @@ <td>{{booking.purpose}}</td> </tr> <tr class="row3"> - <td>collaborator{% booking.collaborators.all.count|pluralize:"s" %}:</td> + <td>collaborators:</td> <td></td> </tr> {% for user in booking.collaborators.all %} |