{% extends "sentry/projects/manage.html" %} {% load i18n %} {% load sentry_helpers %} {% load sentry_plugins %} {% block title %}{% trans "Manage Integrations" %} | {{ block.super }}{% endblock %} {% block inner %}
{% csrf_token %} {% for plugin, is_enabled in project|get_plugins_with_status %} {% endfor %}
{% trans "Integration" %} {% 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_disable and plugin.can_enable_for_projects %} {% else %} {% trans "n/a" %} {% endif %}
{% endblock %}