{% extends 'boards/base.html' %} {% load board %} {% load i18n %} {% block head %} {{ site_name }} - {% trans 'Notifications' %} - {{ notification_usernames|join:', ' }} {% endblock %} {% block content %}
{% for username in notification_usernames %} @{{ username }} {% endfor %}
{% if page %} {% if page.has_previous %} {% endif %} {% for post in page.object_list %} {% post_view post need_op_data=True %} {% endfor %} {% if page.has_next %} {% endif %} {% endif %} {% endblock %}