From de9a0666a8856e42d227754f6dc3915f6928af4c Mon Sep 17 00:00:00 2001 From: Sawyer Bergeron Date: Mon, 28 Jan 2019 13:07:05 -0500 Subject: Update Inbox Featureset Inbox now supports marking unread, marking for deletion, and has a new UI Change-Id: Ia684056f70ecca31bbd71634f4d1d5415f7e5428 Signed-off-by: Sawyer Bergeron --- src/templates/notifier/notification.html | 65 +++++++++++++++++++++++++++----- 1 file changed, 55 insertions(+), 10 deletions(-) (limited to 'src/templates/notifier/notification.html') diff --git a/src/templates/notifier/notification.html b/src/templates/notifier/notification.html index 65d26c9..0eafa60 100644 --- a/src/templates/notifier/notification.html +++ b/src/templates/notifier/notification.html @@ -2,19 +2,55 @@ {% block extrahead %} {% endblock %} + {% block basecontent %} -
-

{{notification.title}}

-

-
-{{notification.content|safe}}
-
+ +
+

{{notification.title}} +
+ + +
+

+

+ +{% if not notification.is_html %} +
+{% endif %}
+    {{notification.content|safe}}
+{% if not notification.is_html %}
+
+{% endif %} +
+ {% csrf_token %} +
+ {% endblock %} -- cgit 1.2.3-korg