{% load i18n %}
{% trans "Name" %}
{{ languagepack.name }}
{% trans "ID" %}
{{ languagepack.uuid }}
{% trans "Description" %}
{{ languagepack.description|default:"None" }}
{% trans "Status" %}
{{ languagepack.status }}
{% trans "Source Uri" %}
{{ languagepack.source_uri }}

{% trans "Log details" %}


{% for log in loglist %}
{% trans "Resource UUID" %}
{{ log.resource_uuid }}
{% trans "Created at" %}
{{ log.created_at }}
{% 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 %}
{% trans "No Log details." %}
{% endfor %}