{% extends "_layout.html" %} {% block content %}

Datasets Configuration

{{ config_json["datasource"] }}

Delivery Type {{ config_json["delivery_type"] }}
Data Manager(s) {{ config_json["data_manager_email"] }}
Target Database {{ config_json["target_database"] }}

Services
{% for service in config_json["services"] %}

{{ service["target_resource_name"] }}
{% for param in service["parameters"].keys() %} {% endfor %}
Parameters
Name Value
{{ param }} {{ service["parameters"][param] }}
{% if service.get("cluster_config") is not none %}
{% for param in service["cluster_config"].keys() %} {% endfor %}
Cluster Configuration
{{ param }} {{ service["cluster_config"][param] }}
{% endif %} {% if service.get("schedule") is not none %}
{% for param in service["schedule"].keys() %} {% endfor %}
Schedule
{{ param }} {{ service["schedule"][param] }}
{% endif %}
{% endfor %}
{% endblock %}