diff options
author | nishanth | 2010-02-27 14:22:26 +0530 |
---|---|---|
committer | nishanth | 2010-02-27 14:22:26 +0530 |
commit | 6b2d9faeb5827ddfb1d6ab9ec1ff341d24a18b1a (patch) | |
tree | c264614a6c415c57e5981b81c4919fdfb8d01090 /templates | |
parent | 6c285ab73a09efdbeca1fb038fd3ee754d2e747a (diff) | |
download | pytask-6b2d9faeb5827ddfb1d6ab9ec1ff341d24a18b1a.tar.gz pytask-6b2d9faeb5827ddfb1d6ab9ec1ff341d24a18b1a.tar.bz2 pytask-6b2d9faeb5827ddfb1d6ab9ec1ff341d24a18b1a.zip |
notifications work for approving and rejecting credits.
Diffstat (limited to 'templates')
-rw-r--r-- | templates/user/view_notification.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/templates/user/view_notification.html b/templates/user/view_notification.html index f31eed9..278a362 100644 --- a/templates/user/view_notification.html +++ b/templates/user/view_notification.html @@ -1,10 +1,10 @@ {% extends 'base.html' %} {% block content %} - Subject: {{notification.sub}}<br /> - Sent time: {{notification.sent_date}}<br /> - {% autoescape off %} - {{notification.message}} - {% endautoescape %} + sent at {{notification.sent_date}}<br /> + Sub: {{notification.sub}}<br /> + + <br /> + {{notification.message|safe}} <form action="delete/" method="post"> <input type="submit" value="Delete"> </form> <form action="unread/" method="post"> <input type="submit" value="Keep Unread"> </form> {% endblock %} |