{% extends "base.html" %} {% block title %} Notifications {% endblock %} {% block content %} {% if current_user.notifications %}
{{ _("Edit email notification settings") }} {% endif %}

Notifications

{% if current_user.notifications %}

Newest first.

{% endif %} {% if editor_notifications %}

Your Notifications

{% endif %}
{% for n in notifications %}
{% if n.package %}
{{ n.package.title }}
{% endif %}
{{ n.title}}
{{ n.causer.display_name }}
{% else %}

No notifications

{% endfor %}
{% if editor_notifications %}

Editor Notifications

{% for n in editor_notifications %}
{% if n.package %}
{{ n.package.title }}
{% endif %}
{{ n.title}}
{{ n.causer.display_name }}
{% else %}

No notifications

{% endfor %}
{% endif %} {% endblock %}