##// END OF EJS Templates
Fixed tag gallery view
Fixed tag gallery view

File last commit:

r1429:5967a527 default
r1863:cb14f6f4 default
Show More
notifications.html
35 lines | 1.0 KiB | text/html | HtmlLexer
{% extends 'boards/base.html' %}
{% load board %}
{% load i18n %}
{% block head %}
<meta name="robots" content="noindex">
<title>{{ site_name }} - {% trans 'Notifications' %} - {{ notification_usernames|join:', ' }}</title>
{% endblock %}
{% block content %}
<div class="tag_info">
{% for username in notification_usernames %}
<a href="{% url 'notifications' username %}" class="user-cast">@{{ username }}</a>
{% endfor %}
</div>
{% if page %}
{% if page.has_previous %}
<div class="page_link">
<a href="?page={{ page.previous_page_number }}">{% trans "Previous page" %}</a>
</div>
{% endif %}
{% for post in page.object_list %}
{% post_view post need_op_data=True %}
{% endfor %}
{% if page.has_next %}
<div class="page_link">
<a href="?page={{ page.next_page_number }}">{% trans "Next page" %}</a>
</div>
{% endif %}
{% endif %}
{% endblock %}