{% extends 'generic/object.html' %} {% load helpers %} {% load plugins %} {% load i18n %} {% block content %}
{% trans "Execution Step" %}
{% trans "Run" %} {{ object.run }}
{% trans "Index" %} {{ object.index }}
{% trans "Kind" %} {{ object.get_kind_display }}
{% trans "Status" %} {{ object.get_status_display }}
{% trans "Model" %} {{ object.model_string|placeholder }}
{% trans "Label" %} {{ object.label|placeholder }}
{% trans "Query" %} {{ object.query_name|placeholder }}
{% trans "Execution Mode" %} {{ object.execution_mode|placeholder }}
{% trans "Execution Value" %} {{ object.execution_value|placeholder }}
{% trans "Sync Mode" %} {{ object.sync_mode|placeholder }}
{% trans "Fetch Mode" %} {{ object.fetch_mode|placeholder }}
{% trans "Fetch Key Family" %} {{ object.fetch_key_family|placeholder }}
{% plugin_left_page object %}
{% trans "Runtime" %}
{% trans "Estimated Changes" %} {{ object.estimated_changes }}
{% trans "Actual Changes" %} {{ object.actual_changes }}
{% trans "Branch" %} {% if object.branch %} {{ object.branch }} {% elif object.branch_name %} {{ object.branch_name }} {% else %} {{ ""|placeholder }} {% endif %}
{% trans "Ingestion" %} {% if object.ingestion %} {{ object.ingestion }} {% else %} {{ ""|placeholder }} {% endif %}
{% trans "Job" %} {% if object.job %} {{ object.job }} {% else %} {{ ""|placeholder }} {% endif %}
{% trans "Merge Job" %} {% if object.merge_job %} {{ object.merge_job }} {% else %} {{ ""|placeholder }} {% endif %}
{% trans "Retries" %} {{ object.retry_count }}
{% trans "Heartbeat" %} {{ object.heartbeat|placeholder }}
{% trans "Started" %} {{ object.started|placeholder }}
{% trans "Completed" %} {{ object.completed|placeholder }}
{% if object.last_error %}
{% trans "Last Error" %}
{{ object.last_error }}
{% endif %}
{% include 'extras/inc/configcontext_data.html' with title="Shard Keys" data=object.shard_keys format="json" copyid="forward-execution-step-shard-keys" %}
{% include 'extras/inc/configcontext_data.html' with title="Fetch Parameters" data=object.fetch_parameters format="json" copyid="forward-execution-step-fetch-parameters" %}
{% include 'extras/inc/configcontext_data.html' with title="Query Parameters" data=object.query_parameters format="json" copyid="forward-execution-step-query-parameters" %}
{% include 'extras/inc/configcontext_data.html' with title="Fetch Column Filters" data=object.fetch_column_filters format="json" copyid="forward-execution-step-fetch-column-filters" %}
{% plugin_right_page object %}
{% endblock content %}