{% extends "default.html" %} {% block pagetitle %}Notifications{% endblock %} {% block pagetype %}notifications{% endblock %} {% block PseudoSubmitForm %}{% endblock %} {% block navbar %}
{% endblock %} {% block content %}
{% 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 %}
{% if ma.sub %} /h/{{ma.sub}} - {% 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 notifications
{% endif %}
{% endblock %} {% block pagenav %} {% if notifications %} {% endif %} {% endblock %} {% block GIFpicker %}{% endblock %}