blob: 21b4ce043889bf1e1c0319cca1e542c28ac05390 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{% extends 'base.html' %}
{% block content %}
{% if not notifications %}
You have no notifications.
{% else %}
{% for notification in notifications %}
<a href="/user/notifications/nid={{notification.id}}">
{% if not notification.is_read %} <b> {% endif %}
{{notification.sub}}
{% if not notification.is_read %} </b> {% endif %}</a><br />
{% endfor %}
{% endif %}
{% endblock %}
|