From 31cf5065a18a84984d996bb7377f21dd19b7754e Mon Sep 17 00:00:00 2001
From: Nishanth Amuluru
Date: Fri, 7 Jan 2011 12:35:44 +0530
Subject: Created template for view notification
---
templates/profile/view_notification.html | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
create mode 100644 templates/profile/view_notification.html
diff --git a/templates/profile/view_notification.html b/templates/profile/view_notification.html
new file mode 100644
index 0000000..8b50a3e
--- /dev/null
+++ b/templates/profile/view_notification.html
@@ -0,0 +1,25 @@
+{% extends 'base.html' %}
+{% block content %}
+{% if newest %}
+<<newest
+{% endif %}
+{% if newer %}
+<newer
+{% endif %}
+{% if older %}
+older>
+{% endif %}
+{% if oldest %}
+oldest>>
+{% endif %}
+
+
+
+sent on {{notification.sent_date|date:"D d M Y"}} at {{notification.sent_date|time:"H:i"}}
+Sub: {{notification.sub}}
+
+{{notification.message|safe}}
+
+Delete
+Keep Unread
+{% endblock %}
--
cgit