{% extends "control_panel/base.html" %}
{% load i18n %}
{% load staticfiles %}
{% load include_block %}
{% block title %}{% if zone.name %}{{ zone.name }} - {% endif %}{% trans "Sharing Network Management Console" %}{% endblock title %}
{% block i18n_do_not_translate %}
{% block users_active %}active{% endblock users_active %}
{% block manage_active %}active{% endblock manage_active %}
{% block facility_active %}active{% endblock facility_active %}
{% endblock i18n_do_not_translate %}
{% block headcss %}{{ block.super }}
{% if clock_set %}
{% include_block "control_panel/snippets/clock_set.html" "headcss" %}
{% endif %}
{% endblock headcss %}
{% block headjs %}{{ block.super }}
{% if clock_set %}
{% include_block "control_panel/snippets/clock_set.html" "headjs" %}
{% endif %}
{% endblock headjs %}
{% block buttons %}
{% block upload_button %}
{% endblock upload_button %}
{% block download_button %}
{% endblock download_button %}
{% trans "Export Data" %}
{% endblock buttons %}
{% block control_panel_content %}
{# Facilities Section #}
{% include "control_panel/partials/_facility_table.html" %}
{# Device Section #}
{% include "control_panel/partials/_device_table.html" %}
{% endblock control_panel_content %}