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

{{ self.title() }}

{% 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/Approver 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 %}