{% from "shared/components.html" import icon, nav_link %} {% set current_page = active_page|default("dashboard") %} {% set page_title = page_header|default(title) %} {% set home_url = url_for('dashboard:index') %} Asyncz | {{ title }}
{% include "shared/loading.html" %}

{{ page_title }}

{{ nav_link(home_url, "Overview", current_page == "dashboard", "dashboard") }} {{ nav_link(url_for('dashboard:tasks:index'), "Tasks", current_page == "tasks", "tasks") }} {{ nav_link(url_for('dashboard:runtime:index'), "Runtime", current_page == "runtime", "runtime") }} {{ nav_link(url_for('dashboard:instances:index'), "Instances", current_page == "instances", "instances") }} {{ nav_link(url_for('dashboard:timeline:index'), "Timeline", current_page == "timeline", "timeline") }} {{ nav_link(url_for('dashboard:events:index'), "Events", current_page == "events", "events") }} {{ nav_link(url_for('dashboard:history:index'), "History", current_page == "history", "history") }} {{ nav_link(url_for('dashboard:audit:index'), "Audit", current_page == "audit", "audit") }} {{ nav_link(url_for('dashboard:logs:index'), "Logs", current_page == "logs", "logs") }} {% if logout_url %} {{ icon("logout") }} Logout {% endif %}
{% include "shared/messages.html" %}
{% block content %}{% endblock %}