mirror of
https://github.com/minetest/contentdb.git
synced 2024-11-10 17:43:46 +01:00
24 lines
572 B
HTML
24 lines
572 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}
|
|
Notifications
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
{% if current_user.notifications %}
|
|
<form method="post" action="{{ url_for('clear_notifications_page') }}">
|
|
<input type="hidden" name="csrf_token" value="{{ csrf_token() }}" />
|
|
<input type="submit" value="Clear All" />
|
|
</form>
|
|
{% endif %}
|
|
<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 %}
|