{% extends 'base.html' %} {% block content %}
Connected clients (ogClient)

{{ clients['clients'] | length }}

Latest images
{% for image in images[:10] %}
  • {{ image['name'] }}
  • {{ image['modified'] }}
{% endfor %}
Disk stats
  • Disk size
  • used
  • available
  • use(%)
  • {{ disk['total'] // 2**30 }} Gbytes
  • {{ (disk['total'] - disk['free']) // 2**30 }} Gbytes
  • {{ disk['free'] // 2**30 }} Gbytes
  • {{ (((disk['total'] - disk['free']) / disk['total']) * 100)|int }}%
Number of images

{{ images | length }}

ogLives
    {% for oglive in oglive_list['oglive'] %}
  • {{ oglive['directory'] }} {% if loop.index0 == oglive_list['default'] %} (default) {% endif %}
  • {% endfor %}
{% endblock %} {% block extrabody %} {% endblock %}