{% extends "control_panel/base.html" %} {% load i18n %} {% load staticfiles %} {% load my_filters %} {% block title %}{% blocktrans with device_name=device.name %}{{ device_name }} Device Syncing History{% endblocktrans %}{{ block.super }}{% 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 }} {% endblock headcss %} {% block headjs %}{{ block.super }} {% endblock headjs %} {% block buttons %}{{ block.super }} {% if is_own_device %}
{% endif %} {% endblock buttons %} {% block subnavbar %}{{block.super}}{% endblock subnavbar %} {% block control_panel_content %}{% trans "This device has never synced with the central server." %}
{% trans "This device is not registered, and so cannot sync data with the central server." %}
{% else %} {% if sync_job %} {% if sync_job.is_running %}{% trans "Sync Date" %} | {% trans "Device IP Address" %} | {% trans "# Models Uploaded" %} | {% trans "# Models Downloaded" %} | {% trans "# Errors" %} |
---|---|---|---|---|
{{ sync_session.timestamp }} | {{ sync_session.ip }} | {{ sync_session.models_uploaded }} | {{ sync_session.models_downloaded }} | {{ sync_session.errors }} |