{% load i18n %} {% load rules %} {% load accounts_tags %} {% has_perm 'projects.add_integration_object' request.user project as can_add_integration %} {% has_perm 'projects.change_integration_object' request.user project as can_change_integration %} {% has_perm 'projects.delete_integration_object' request.user project as can_delete_integration %} {% if integrations %}

{% trans 'Integrations' %}

{% include 'projects/project_detail_integrations_help.html' %} {% for integration in integrations %} {% if integration.provider %} {% endif %} {% endfor %}
{% trans 'Provider' %} {% trans 'Description' %} {% trans 'Options' %}
{{ integration.provider.label }} {{ integration.provider.description }} {% for option in integration.options.all %} {% if not option.secret %} {{ option.key.title }}: {{ option.value }}
{% endif %} {% endfor %} {% if integration.project != project %} ({% trans 'from' %} {{ integration.project.title }}) {% endif %}
{% if integration.project == project %} {% if can_change_integration %} {% endif %} {% if can_delete_integration %} {% endif %} {% endif %}
{% endif %}