{% extends "default.html" %} {% block pagetype %}{% endblock %} {% block PseudoSubmitForm %}{% endblock %} {% block navbar %}
{% endblock %} {% block content %}
Mark all notifications as read
{% if request.path == '/notifications/posts' %} {% with listing=notifications %}
{% include "submission_listing.html" %}
{% endwith %} {% elif request.path == '/notifications/modactions' %}
{% for ma in notifications %}
avatar {% if ma.user.hat_active -%} {%- endif %}
@{{ma.user.username}} {{ma.string | safe}}
{{ma.age_string}}
{% else %}
There's nothing here right now.
{% endfor %}
{% else %} {% with comments=notifications %} {% include "comments.html" %} {% endwith %} {% endif %} {% if not notifications %}
No unread messages
When someone comments or replies, it will show up here.
View entire inbox
{% endif %}
{% endblock %} {% block pagenav %} {% if notifications %} {% endif %} {% endblock %} {% block GIFpicker %} {% endblock %}