summaryrefslogtreecommitdiff
path: root/taskapp/utilities
diff options
context:
space:
mode:
authornishanth2010-03-01 11:52:00 +0530
committernishanth2010-03-01 11:52:00 +0530
commit77312a19a2877e4650ebe55fc2fa596c968252ed (patch)
tree526697e8951ed0f73aa886b8867d23d3f425d62d /taskapp/utilities
parentf9219059285e024c70c50ee4ade9053ed23934d7 (diff)
downloadpytask-77312a19a2877e4650ebe55fc2fa596c968252ed.tar.gz
pytask-77312a19a2877e4650ebe55fc2fa596c968252ed.tar.bz2
pytask-77312a19a2877e4650ebe55fc2fa596c968252ed.zip
implemented nu nt nd ng na notifications.
Diffstat (limited to 'taskapp/utilities')
-rw-r--r--taskapp/utilities/notification.py27
1 files changed, 27 insertions, 0 deletions
diff --git a/taskapp/utilities/notification.py b/taskapp/utilities/notification.py
index 16e80a1..e16a94f 100644
--- a/taskapp/utilities/notification.py
+++ b/taskapp/utilities/notification.py
@@ -115,6 +115,33 @@ def create_notification(role, sent_to, sent_from=None, reply=None, task=None, re
notification.message += "</ul><br />"
notification.message += "Happy Mentoring."
+ elif role == "NU":
+
+ start_here_url = '<a href="/about/starthere/" taget="_blank">start here</a>'
+ notification.sub = "Welcome %s"%sent_to.username
+ notification.message = "Welcome to PyTasks %s.<br />"%sent_to.username
+ notification.message += "If you are lost and have no clue, %s"%start_here_url
+
+ elif role in ["ND", "NG", "NA"]:
+
+ rights_dict = dict(RIGHTS_CHOICES)
+
+ if role == "ND":
+ role_rights = rights_dict["DV"]
+ elif role == "NG":
+ role_rights = rights_dict["MG"]
+ elif role == "NA":
+ role_rights = rights_dict["AD"]
+
+ requested_by_url = r'<a href="/user/view/uid=%s">%s</a>'%(requested_by.id, requested_by.username)
+ role_learn_url = r'<a href="/about/%s" target="_blank">click here</a>'%role_rights.lower()
+ a_or_an = "an" if role_rights == "Admin" else "a"
+
+ notification.sub = "You are now %s %s"%(a_or_an, role_rights)
+ notification.message = r"You have accepted the request made by %s asking you to act as %s %s in the site "%(requested_by_url, a_or_an, role_rights)
+ notification.message += "and you are now %s %s in the site.<br /> %s to learn more on %s."%(a_or_an, role_rights, role_learn_url, role_rights)
+
+
elif role in ["CM", "CD"]:
notification.sent_from = sent_from