Reformat html files

This commit is contained in:
cuom1999 2023-01-27 17:11:10 -06:00
parent 9a208ca108
commit 52f1e77fe1
205 changed files with 11096 additions and 11086 deletions

View file

@ -2,49 +2,49 @@
{% block body %}
{% if not has_notifications %}
{% if not has_notifications %}
<h2 style="text-align: center;">{{ _('You have no notifications') }}</h2>
<h2 style="text-align: center;">{{ _('You have no notifications') }}</h2>
{% else %}
{% else %}
<table class="table">
<tr>
<tr>
<th>{{ _('User') }}</th>
<th>{{ _('Activity') }}</th>
<th>{{ _('Link') }}</th>
<th>{{ _('Time') }}</th>
</tr>
{% for notification in notifications %}
<tr class="{{ 'highlight' if not notification.seen }}">
<td>
</tr>
{% for notification in notifications %}
<tr class="{{ 'highlight' if not notification.seen }}">
<td>
{% if notification.comment %}
{{ link_user(notification.comment.author) }}
{{ link_user(notification.comment.author) }}
{% else %}
{{ link_user(notification.author) }}
{{ link_user(notification.author) }}
{% endif %}
</td>
<td>
</td>
<td>
{{ notification.category }}
</td>
<td>
</td>
<td>
{% if notification.comment %}
<a href="{{ notification.comment.link }}#comment-{{ notification.comment.id }}">{{ page_titles[notification.comment.page] }}</a>
<a href="{{ notification.comment.link }}#comment-{{ notification.comment.id }}">{{ page_titles[notification.comment.page] }}</a>
{% else %}
{% autoescape off %}
{{notification.html_link}}
{% endautoescape %}
{% autoescape off %}
{{notification.html_link}}
{% endautoescape %}
{% endif %}
</td>
<td>
</td>
<td>
{{ relative_time(notification.time) }}
</td>
</tr>
{% endfor %}
</td>
</tr>
{% endfor %}
</table>
{% endif %}
{% endif %}
{% endblock %}
<!--
<!--
-->