{% extends "borg/base.html" %} {% load cache %} {% load static %} {% block title %}Borg Summary{% endblock %} {% block script %} {{ hour_list|json_script:"hour_list" }} {% endblock %} {% block style %} {{ block.super }} .repo-container { padding: 8px; margin: 8px; } .att-label { margin-top: 4px; margin-bottom: 4px; } {% endblock %} {% block body %} {% if repo_list %}
{% for repo in repo_list %}

{{ repo.label }} {{ repo.location }}

Latest backup:
{{ repo.last_backup }}
Hourly backups:
{{ repo.hourly_archive_string }}
Size:
{{ repo.size_string }}
{% if repo.recent_errors|length > 0 %}
Recent errors:
{% endif %}
{% for error in repo.recent_errors %}
{{ error.time_ago }}
{{ error.error }}
{% endfor %}
{% endfor %}
{% else %}

No repositories found

{% endif %}

Paths

{% if location_list %} {% for location in location_list %}
{{ location.label }}
{{ location.short_description }}
{% endfor %} {% else %}

None found

{% endif %}
{% endblock %}