{% extends "fastapp/default.html" %} {% load cache %} {% load redis_metric_tags %} {% load fastapp_tags %} {% block title %}{{ block.super }} - Cockpit {% endblock title %} {% block extra_header %} {{ block.super }} {% endblock %} {% block js_end_body %} {{ block.super }} {% endblock %} {% block main %}
{% cache 120 heartbeat %} {% include "fastapp/cockpits/heartbeat.html" %} {% endcache 120 %} {% cache 30 serverthreads %} {% include "fastapp/cockpits/serverthreads.html" %} {% endcache %} {% include "fastapp/cockpits/worker.html" %} {% include "fastapp/cockpits/executors.html" %} {% cache 30 plugins %} {% include "fastapp/cockpits/plugins.html" %} {% endcache %}
{% endblock %}