{% extends 'admin/base.html' %} {% block head_css %} {{ super() }} {% endblock %} {% block tail_js %} {{ super() }} {% endblock %} {% block page_body %}
{% block messages %} {% if scheduler_job is defined and (not scheduler_job or not scheduler_job.is_alive()) %}

The scheduler does not appear to be running. {% if scheduler_job %} Last heartbeat was received . {% endif %}

The DAGs list may not update, and new tasks will not be scheduled.

{% endif %} {{ layout.messages() }} {% endblock %} {# store the jinja2 context for form_rules rendering logic #} {% set render_ctx = h.resolve_ctx() %} {% block body %} {{ content }} {% endblock %}
{% endblock %}