We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 820afd7 + 67c2b7a commit 8408908Copy full SHA for 8408908
FusionIIIT/templates/notifications/messModule_sidepanel.html
@@ -0,0 +1,26 @@
1
+{% load static %}
2
+{% block sidepanel %}
3
+ {% load notifications_tags %}
4
+ {% for notice in notifications %}
5
+ {% if notice.unread %}
6
+ {% if notice.data.module == 'Central Mess' %}
7
+ <div class="ui icon message">
8
+ <i class="inbox icon"></i>
9
+ <div class="content">
10
+ <div class="header">
11
+ <a href="{% url 'notifications:mark_as_read_and_redirect' notice.slug %}">
12
+ {{ notice.data.module }}
13
+ </a>
14
+ </div>
15
+ <p>{{ notice.verb }}</p>
16
17
+ <div class="ui right floated">
18
+ <a href="{% url 'notifications:delete' notice.slug %}">
19
+ <i class="close icon"></i>
20
21
22
+</div>
23
+ {% endif%}
24
+ {% endif %}
25
+ {% endfor %}
26
+{% endblock %}
0 commit comments