{% extends 'base.html' %} {% block nav_dashboard %}active{% endblock %} {% 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 %}