diff options
author | Primal Pappachan | 2012-04-02 14:04:31 +0530 |
---|---|---|
committer | Primal Pappachan | 2012-04-02 14:04:31 +0530 |
commit | 56e2d83565a559be5105ad0f62daf018ac16bd01 (patch) | |
tree | cf962b73eeab80c82d89cabb462a1087f0c6e107 | |
parent | 84fda107080d51292869973db09e795403534e3c (diff) | |
download | aloha-56e2d83565a559be5105ad0f62daf018ac16bd01.tar.gz aloha-56e2d83565a559be5105ad0f62daf018ac16bd01.tar.bz2 aloha-56e2d83565a559be5105ad0f62daf018ac16bd01.zip |
added time stamp to mail
-rw-r--r-- | aloha/allotter/views.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/aloha/allotter/views.py b/aloha/allotter/views.py index 33a4353..310d0b4 100644 --- a/aloha/allotter/views.py +++ b/aloha/allotter/views.py @@ -209,6 +209,7 @@ def complete_allotment(request): content += "%s,%s:" %(counter, option.opt_code) counter += 1 admin_content +="#" + admin_content += time.ctime() send_mail(subject, content, from_email, [sec_email]) mail_admins(subject, admin_content) return render(request, 'allotter/complete.html', context) |