aboutsummaryrefslogtreecommitdiffstats
path: root/src/notifier/manager.py
diff options
context:
space:
mode:
authorParker Berberian <pberberian@iol.unh.edu>2019-02-25 17:04:57 +0000
committerGerrit Code Review <gerrit@opnfv.org>2019-02-25 17:04:57 +0000
commite858a658aa9594949ec3b357253b34c7489d623d (patch)
tree09acd4000e3de9c7a064a267dffe2986b3e4af41 /src/notifier/manager.py
parentb06649b237636f8fd29947094e9fc44472b88d18 (diff)
parentde9a0666a8856e42d227754f6dc3915f6928af4c (diff)
Merge "Update Inbox Featureset"
Diffstat (limited to 'src/notifier/manager.py')
-rw-r--r--src/notifier/manager.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/notifier/manager.py b/src/notifier/manager.py
index f03c2cc..240cf85 100644
--- a/src/notifier/manager.py
+++ b/src/notifier/manager.py
@@ -18,13 +18,13 @@ class NotificationHandler(object):
@classmethod
def notify_new_booking(cls, booking):
template = "notifier/new_booking.html"
- titles = ["You have a new Booking", "You have been added to a Booking"]
+ titles = ["You have a new booking (" + str(booking.id) + ")", "You have been added to a booking (" + str(booking.id) + ")"]
cls.booking_notify(booking, template, titles)
@classmethod
def notify_booking_end(cls, booking):
template = "notifier/end_booking.html"
- titles = ["Your booking has ended", "A booking you collaborate on has ended"]
+ titles = ["Your booking (" + str(booking.id) + ") has ended", "A booking (" + str(booking.id) + ") that you collaborate on has ended"]
cls.booking_notify(booking, template, titles)
@classmethod