mirror of
https://github.com/minetest/contentdb.git
synced 2024-11-10 17:43:46 +01:00
4fdafefcd5
Fixes #28
18 lines
321 B
HTML
18 lines
321 B
HTML
{% 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 %}
|