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

Workflow Status

{{ config_json["datasource"] }}    

Delivery Type {{ config_json["delivery_type"] }}
Data Manager(s) {{ config_json["data_manager_email"] }}
Target Database {{ config_json["target_database"] }}
Workflow Id {{ config_json["workflow_id"] }}
Delivery Date {{ config_json["delivery_date"] }}
Vendor Delivery Location {{ config_json["vendor_delivery_location"] }}
Workflow Status {% if config_json["tracking"]["status"].casefold() == 'succeeded' %} {% endif %} {% if config_json["tracking"]["status"].casefold() == 'failed' %} {% endif %} {% if config_json["tracking"]["status"].casefold() == 'running' %} {% endif %} {% if config_json["tracking"]["status"].casefold() == 'rejected' %} {% endif %} {{ config_json["tracking"]["status"] }}
Workflow Start (UTC) {{ config_json["tracking"]["start_utc"] }}
Workflow End (UTC) {{ config_json["tracking"]["end_utc"] }}

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

Service Name: {{ 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 %} {% if service.get("tracking") is not none %}
{% for param in service["tracking"].keys() %} {% endfor %}
Tracking
Name Value
{{ param }} {{ service["tracking"][param] }}
{% endif %}
{% endfor %}
{% endblock %}