{% extends "default.html" %} {% block pagetitle %}Notifications{% endblock %} {% block pagetype %}notifications{% endblock %} {% block PseudoSubmitForm %}{% endblock %} {% block navbar %}
{% endblock %} {% block content %}
{% if request.path.startswith('/notification/') %}
View all notifications
{% else %} {% endif %}
{% if request.path == '/notifications/chats' %} {% for chat, notification in notifications %} {% endfor %}
{{chat.name}} {% if notification %} {% endif %} {% if get_running_orgy(v, chat.id) %} {% endif %}
{% elif request.path == '/notifications/posts' %} {% with listing=notifications %}
{% include "post_listing.html" %}
{% endwith %} {% elif request.path == '/notifications/modactions' %}
{% for ma in notifications %}
avatar {% if ma.user.hat_active(v)[0] -%} {%- endif %}
{% if ma.hole %} /h/{{ma.hole}} - {% endif %} @{{ma.user.username}} {{ma.string | safe}}
{{ma.age_string}}
{% else %}
There's nothing here right now.
{% endfor %}
Link copied to clipboard
{% else %} {% with comments=notifications %} {% include "comments.html" %} {% endwith %} {% endif %} {% if not notifications %}
No notifications
{% endif %}
{% endblock %} {% block pagenav %} {% if notifications and request.path != '/notifications/chats' %} {{macros.pagination()}} {% endif %} {% if request.path == '/notifications/messages' %} {% endif %} {% endblock %} {% block GIFpicker %}{% endblock %}