{% extends 'projectroles/base.html' %} {% load static %} {% load rules %} {% load projectroles_common_tags %} {% block title %}{% if dismissed %}Dismissed{% else %}Active{% endif %} App Alerts{% endblock title %} {% block css %} {{ block.super }} {% endblock css %} {% block projectroles %}
{% if dismissed %}

Dismissed App Alerts

{% else %}

Active App Alerts

{% endif %} {% if not dismissed %}
{% else %} Active Alerts {% endif %}
{% for a in object_list %} {% if a.project %} {% has_perm 'projectroles.view_project' request.user a.project as can_view_project %} {% endif %}
{% if a.project %} {% include 'projectroles/_project_badge.html' with project=a.project color=a.level can_view=can_view_project %} {% endif %} {{ a.message | safe }}
{% if not dismissed and not read_only_disable %} {% if a.url and not a.project or can_view_project %} {% endif %} {% endif %}
{% endfor %}
There are currently no alerts for you.
{% if dismissed and object_list.count > 0 %} {% include 'projectroles/_pagination.html' with pg_small=False %} {% endif %}
{% endblock projectroles %} {% block javascript %} {{ block.super }} {% endblock javascript %}