{% extends 'generic/_base.html' %} {% load helpers %} {% load i18n %} {% block title %}{% trans "Connection Backends" %}{% endblock %} {% block subtitle %}
{% trans "Globally installed drivers" %}
{% endblock %} {% block content %}
{% trans "Back to Settings" %}

{% trans "Connection Backends" %}

{% for item in driver_info %} {% endfor %}
{% trans "Driver" %} {% trans "Status" %} {% trans "Version" %}
{{ item.driver }} {% if item.ok %} {% trans "Installed" %} {% else %} {% trans "Not installed" %} {% endif %} {% if item.version %} {{ item.version }} {% else %} {% endif %}

{% trans "Missing drivers are installed automatically on the worker when a workflow that needs them runs for the first time." %}

{% endblock content %}