{% if error %}

Failed to load repository details

{{ error_message }}

{% else %}
{% if repository_id %}
Repository ID:
{{ repository_id }}
{% endif %} {% if location %}
Location:
{{ location }}
{% endif %} {% if encryption %}
Encryption: {{ encryption.mode }}
{% endif %} {% if cache %}
Cache Path:
{{ cache.path }}
{% endif %} {% if security_dir %}
Security Dir:
{{ security_dir }}
{% endif %} {% if archives_count is defined %}
Archives: {{ archives_count }}
{% endif %} {% if last_modified %}
Last Modified: {{ last_modified }}
{% endif %} {% if original_size %}
Original Size: {{ original_size }}
{% endif %} {% if compressed_size %}
Compressed Size: {{ compressed_size }}
{% endif %} {% if deduplicated_size %}
Deduplicated Size: {{ deduplicated_size }}
{% endif %}
{% if config or config_error %}
Repository Configuration
{% if config_error %}

Could not load configuration

{{ config_error }}

{% elif config %}
{% for key, value in config.items() %}
{{ key }}:
{{ value }}
{% endfor %}
{% else %}

No configuration settings found

{% endif %}
{% endif %} {% endif %}