{% extends 'base/layout.html' %} {% block title %}Import Logs{% endblock %} {% block content %}
Device Import & Sync — Logs

One entry per import (newest first). The full debug log and the human-readable user log are downloadable; open an import to see the per-device result. The folder keeps the newest 50 imports.

{% if runs %} {% for run in runs %} {% endfor %}
Import When User Devices Result Logs
Job #{{ run.job_pk }} {{ run.mtime }} {{ run.user }} {{ run.device_count }} {% if run.rollup.ok %} {{ run.rollup.ok }} ok {% endif %} {% if run.rollup.warning %} {{ run.rollup.warning }} warning {% endif %} {% if run.rollup.failed %} {{ run.rollup.failed }} failed {% endif %} {% if run.has_debug %} Full {% endif %} {% if run.has_user %} User {% endif %}
{% else %}

No imports have been logged yet.

{% endif %}
{% endblock %}