{% extends 'generic/_base.html' %} {% load helpers %} {% load i18n %} {% block title %}{% trans "Connection Backends" %}{% endblock %} {% block subtitle %}
| {% 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 %}