2020-07-03 02:50:31 +00:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block body %}
|
2024-04-27 01:55:24 +00:00
|
|
|
{% if not notifications %}
|
2023-01-27 23:11:10 +00:00
|
|
|
<h2 style="text-align: center;">{{ _('You have no notifications') }}</h2>
|
|
|
|
{% else %}
|
2020-07-03 02:50:31 +00:00
|
|
|
<table class="table">
|
2023-01-27 23:11:10 +00:00
|
|
|
<tr>
|
2020-07-03 02:50:31 +00:00
|
|
|
<th>{{ _('User') }}</th>
|
|
|
|
<th>{{ _('Activity') }}</th>
|
2020-10-20 03:54:13 +00:00
|
|
|
<th>{{ _('Link') }}</th>
|
2020-07-03 02:50:31 +00:00
|
|
|
<th>{{ _('Time') }}</th>
|
2023-01-27 23:11:10 +00:00
|
|
|
</tr>
|
|
|
|
{% for notification in notifications %}
|
|
|
|
<tr class="{{ 'highlight' if not notification.seen }}">
|
|
|
|
<td>
|
2024-04-27 01:55:24 +00:00
|
|
|
{{ link_user(notification.author_id) }}
|
2023-01-27 23:11:10 +00:00
|
|
|
</td>
|
|
|
|
<td>
|
2024-08-13 10:42:51 +00:00
|
|
|
{{ notification.verbose_activity() }}
|
2023-01-27 23:11:10 +00:00
|
|
|
</td>
|
|
|
|
<td>
|
2023-10-10 22:38:48 +00:00
|
|
|
{% autoescape off %}
|
|
|
|
{{notification.html_link}}
|
|
|
|
{% endautoescape %}
|
2023-01-27 23:11:10 +00:00
|
|
|
</td>
|
|
|
|
<td>
|
2020-07-03 02:50:31 +00:00
|
|
|
{{ relative_time(notification.time) }}
|
2023-01-27 23:11:10 +00:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
2020-07-03 02:50:31 +00:00
|
|
|
</table>
|
2023-01-27 23:11:10 +00:00
|
|
|
{% endif %}
|
2024-04-27 01:55:24 +00:00
|
|
|
<div style="margin-top: 10px;">
|
|
|
|
{% include "list-pages.html" %}
|
|
|
|
</div>
|
2020-07-03 02:50:31 +00:00
|
|
|
{% endblock %}
|
|
|
|
|