{% extends "base.html" %} {% block content %}
Contract: {{ record.contract_id }} {{ record.contract_version }}
{% if record.draft_contract_version %}Draft Contract: {{ record.draft_contract_version }}
{% endif %}Status: {{ record.status }} | Run type: {{ record.run_type }}
{% set fails = record.dq_details.get('output', {}).get('failed_expectations', {}) %}| Name | Predicate | Count |
|---|---|---|
| {{ key }} | {{ info.expression }} | {{ info.count }} |
No data quality failures.
{% endif %}{{ record.dq_details.get('output') | tojson(indent=2) }}
{% if data_preview %}
{{ data_preview }}
{% endif %}
{% endblock %}