equal
deleted
inserted
replaced
1 {% extends 'base.html' %} |
1 {% extends 'base.html' %} |
2 {% block content %} |
2 {% block content %} |
3 Subject: {{notification.sub}}<br /> |
3 sent at {{notification.sent_date}}<br /> |
4 Sent time: {{notification.sent_date}}<br /> |
4 Sub: {{notification.sub}}<br /> |
5 {% autoescape off %} |
5 |
6 {{notification.message}} |
6 <br /> |
7 {% endautoescape %} |
7 {{notification.message|safe}} |
8 <form action="delete/" method="post"> <input type="submit" value="Delete"> </form> |
8 <form action="delete/" method="post"> <input type="submit" value="Delete"> </form> |
9 <form action="unread/" method="post"> <input type="submit" value="Keep Unread"> </form> |
9 <form action="unread/" method="post"> <input type="submit" value="Keep Unread"> </form> |
10 {% endblock %} |
10 {% endblock %} |