{% extends "layout.html" %} {% if datasource_id %} {% set datasource_name = datasources[datasource_id].name %} {% endif %} {% block title %}{% if datasource_id %}{{ datasource_name }} data source{% else %}Data sources{% endif %}{% endblock %} {% block body_class %}plain-page {{ body_class }}{% endblock %} {% block body %}

{% if datasource_id %}{{ datasource_name }} data source{% else %}Data sources{% endif %}

{% if datasource_id %} {% if description %}

{{ description|markdown|safe }}

{% else %}

No description set. Data source descriptions can be added with a DESCRIPTION.md file in the data source folder.

{% endif %} {% if labels and "local" in labels %} {% include "query-syntax.html" %} {% endif %}

Metadata

{% if daily_counts %} {% include "day-graph.html" %} {% endif %}
{% else %}

This 4CAT installation has {{ datasources|length }} data sources enabled.

Select a data source from the panel for source-specific information.

{% endif %}
{% endblock %}