{% extends "sentry/bases/admin.html" %} {% load i18n %} {% load sentry_helpers %} {% load sentry_admin_helpers %} {% block title %}{% trans "Manage Projects" %} | {{ block.super }}{% endblock %} {% block admin-nav-projects %} class="active"{% endblock %} {% block main %} {% paginator project_list from request as project_list per_page 50 %}

{% trans "Projects" %}

{% if sort == "events" %}

{% trans "You are viewing projects sorted by the number of events created in the last 24 hours. Projects that have not sent any data are not shown in this view." %}

{% endif %} {% querystring from request without sort as sort_querystring %} {% if project_list.paginator.objects %} {% for project, avg_events in project_list.paginator.objects|with_event_counts %} {% endfor %}
{% trans "Project" %} {% trans "Events (24h)" %} {% trans "Date Added" %}
{% if project.team %} {{ project.organization.slug }}/{{ project.slug }} [stream]
{% else %} {{ project.slug }} {% endif %}
{{ avg_events|small_count }} {{ project.date_added|date }}
{% else %}

{% trans "There are no active projects in Sentry." %}

{% endif %}
{% endblock %}