{% extends "admin/base_site.html" %} {% load i18n l10n %} {% load url from future %} {% load admin_urls static utils %} {% block extrahead %} {{ block.super }} {% for monitor in monitors %} {% if monitor.has_graph %} {% endif %} {% endfor %} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block object-tools %}
  • Refresh
  • {% endblock %} {% block content %}
    {% for monitor in monitors %} {% if monitor.num_processes %}

    {{ monitor.verbose_name }}

      {% for name,values in monitor.get_value_with_configuration.items %} {% if not forloop.counter|divisibleby:"3" and not forloop.counter|divisibleby:"2" %}
    • {% if values.min and values.value < values.min or values.max and values.value > values.max %} False{% else %} False{% endif %} {{ values.value }} {{ values.verbose }} ({{ values.min }}, {{ values.max }})
    • {% endif %} {% endfor %}
      {% for name,values in monitor.get_value_with_configuration.items %} {% if not forloop.counter|divisibleby:"3" and forloop.counter|divisibleby:"2" %}
    • {% if values.min and values.value < values.min or values.max and values.value > values.max %} False{% else %} False{% endif %} {{ values.value }} {{ values.verbose }} ({{ values.min }}, {{ values.max }})
    • {% endif %} {% endfor %}
      {% for name,values in monitor.get_value_with_configuration.items %} {% if forloop.counter|divisibleby:"3" %}
    • {% if values.min and values.value < values.min or values.max and values.value > values.max %} False{% else %} False{% endif %} {{ values.value }} {{ values.verbose }} ({{ values.min }}, {{ values.max }})
    • {% endif %} {% endfor %}


    {% endif %} {% endfor %}

    Resources

    {% for monitor in monitors %} {% if not monitor.num_processes %}

    {{ monitor.verbose_name }}

    Last data: {% for key, value in monitor.last.value.items %}{{ key }}: {{ value }}{% if not forloop.last %},{% endif %} {% endfor %}

    {% if monitor.has_graph %}
    {% endif %}
    {% endif %} {% endfor %}
    {% endblock %}