{% extends 'base.html' %} {% block content %}

{{ _("System status") }}

{{ _("Database info") }}
  • {{ _("Database size (KB)") }}: {{ db_size }} {{ _("Download DB") }}
  • Database file : {{ db_file }}
  • {{ _("Restore database") }}:
{{ _("System info") }}
  • {{ _("Machine info") }}: {{ machine_info }}
  • {{ _("Disk free space") }} (MB): {{ disk_free }}
  • {{ _("Memory free space") }} (MB): {{ ram_free }}
  • {{ _("Backend log file") }}: {{ _("Download") }}
  • {{ _("Reboot system") }}
{{ _("Application info") }}

{{ _("Boards list") }}

{% for board in boards %} {% endfor %}
{{ _("Serial number") }} {{ _("Machine (ID)") }} {{ _("IP address") }} {{ _("FW Version") }} {{_("Free heap") }} {{ _("Last seen") }}
{{ board.serial }} {{ board.machine.machine_name }} ({{ board.machine_id }}) {{ board.ip_address }} {{ board.fw_version }} {{ board.heap }} {{ board.last_seen | time_since }}
{% endblock %}