{% extends "sentry/admin/base.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 breadcrumb %}
  • /
  • {% trans "Projects" %}
  • {% endblock %} {% block main %} {% paginator project_list from request as project_list per_page 50 %}
    {% if sort == "events" %}

    {% trans "You are viewing projects sorted by the number of events created in the last 30 days. 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 "Daily Events" %} {% trans "Date Added" %}
    {{ project.name }} [view]
    {% if project.owner %} Owned by {% if project.owner.email %} {{ project.owner.email }} {% else %} {{ project.owner.username }} {% endif %} {% endif %}
    ~{{ avg_events }} {{ project.date_added|date }}
    {% else %}

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

    {% endif %}
    {% endblock %}