diff options
Diffstat (limited to 'templates/user/view_notification.html')
-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 %} |