aboutsummaryrefslogtreecommitdiff
path: root/app/templates/notifications/list.html
blob: fb133e8d178772ddd4acad4b41177f6bddd7fa03 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{% extends "base.html" %}

{% block title %}
Notifications
{% endblock %}

{% block content %}
	<ul>
		{% for n in current_user.notifications %}
			<li><a href="{{ n.url }}">
				{{ n.title}} [{{ n.causer.display_name }}]
			</a></li>
		{% else %}
			<li><i>No notifications</i></ul>
		{% endfor %}
	</ul>
{% endblock %}