Convert your jobs to Airflow DAGs!
{% if download_link %}
Thank you! Your output will be downloaded soon. If not, click here to download it.
{% endif %}
{% if report_data %}
Conversion Summary
{% for item in report_data.High_Level_Info %}
- {{ item }}
{% endfor %}
{% for table_name in ["Job_info_table", "Schedule_info_table"] %}
{{ report_data[table_name]["title"]}}
{% for column in report_data[table_name]["columns"] %}
{{ column }} |
{% endfor %}
{% for row in report_data[table_name]["rows"] %}
{% for cell in row.values() %}
{{ cell }}
|
{% endfor %}
{% endfor %}
{% endfor %}
{% if report_data.Note %}
{{ report_data.Note}}
{% endif %}
{% endif %}