{% extends "sentry/projects/manage.html" %} {% load i18n %} {% load sentry_helpers %} {% load sentry_plugins %} {% block title %}{% trans "Manage Plugins" %} | {{ block.super }}{% endblock %} {% block breadcrumb %} {{ block.super }}
  • /
  • {% trans "Plugins" %}
  • {% endblock %} {% block inner %}
    {% csrf_token %} {% for plugin, is_enabled in project|get_plugins_with_status %} {% endfor %}
    {% trans "Plugin" %} {% trans "Version" %} {% trans "Enabled" %}
    {% if plugin.has_project_conf %} {{ plugin.get_title }} {% else %} {{ plugin.get_title }} {% endif %}
    {% if plugin.author %} By {% if plugin.author_url %}{{ plugin.author }}{% else %}{{ plugin.author }}{% endif %} {% endif %}
    {% if plugin.version %}{{ plugin.version }}{% else %}{% trans "n/a" %}{% endif %} {% if plugin.can_enable_for_projects %} {% else %} {% trans "n/a" %} {% endif %}
    {% endblock %}