{% load i18n %}

{% trans "Application" %}

{% trans "Log details for " %}: {{ application.name }}

{% for log in loglist %}
{% trans "Resource UUID" %}
{{ log.resource_uuid }}
{% trans "Created at" %}
{{ log.created_at|parse_isotime }}
{% if log.local_storage %}
{% trans "Local Storage" %}
{{ log.local_storage }}
{% elif log.swift_container %}
{% trans "Swift Container" %}
{{ log.swift_container }}
{% trans "Swift Path" %}
{{ log.swift_path }}
{% else %}
{% trans "Location" %}
{{ log.location }}
{% endif %}
{% empty %}
None
{% endfor %}