{% extends "base.html" %} {% block title %}Job Approved - {{ job_name }}{% endblock %} {% block content %}
Great news! Your job has been reviewed and approved by the data owner.
{% set info_items = [ {'label': 'Job Name', 'value': job_name}, {'label': 'Status', 'value': 'Approved', 'badge': 'success'}, {'label': 'Next Step', 'value': 'Waiting for execution'} ] %} {% include 'components/info_box.html' %}Your job has been queued for execution. You'll receive another notification when it completes and your results are ready.
{% if job_url %} {% set button_text = "View Status" %} {% set button_url = job_url %} {% include 'components/button.html' %} {% endif %}Execution times vary depending on job complexity and queue status.
{% endblock %}