{% load i18n %} {% load rules %} {% load accounts_tags %} {% 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' %}

{% 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 can_change_integration %} {% endif %} {% if can_delete_integration %} {% endif %}
{% endif %}