{% extends "django_prometric/base.html" %} {% load i18n %} {% block title %}{% translate "Providers" %}{% endblock %} {% block page_title %}{% translate "Data sources" %}{% endblock %} {% block content %}
{% for entry in all_providers %}

{{ entry.provider.verbose_name }}

{% if entry.provider.is_configured %} {% translate "Connected" %} {% else %} {% translate "Not configured" %} {% endif %}

{{ entry.provider.kind }}

{% if entry.provider.is_configured %} {% if entry.provider.description %}

{{ entry.provider.description }}

{% endif %} {% else %}

{{ entry.provider.configuration_help }}

{% endif %}
{% for capability in entry.capabilities %}{{ capability }}{% endfor %}
{% if entry.provider.max_period_days %}

{% blocktranslate with days=entry.provider.max_period_days %}Looks back up to {{ days }} days.{% endblocktranslate %}

{% endif %} {% if entry.provider.is_configured %} {% endif %}
{% endfor %}
{% endblock %}