{% extends "base.html" %} {% load i18n account entity_permissions %} {% block extralinks %} {% endblock %} {% block extracss %} {% endblock %} {% block content %} {% canedit entity %}{% include "entity/menu.html" %}{% endcanedit %}

{% trans "Entity details" %}

{{ entity.name }}

{% if entity.has_metadata %} {% trans "Get latest version of the metadata" %} {% endif %} {% if entity.owner %}

{% trans "Owned by" %} {% safefullname entity.owner %}

{% endif %} {% with entity.delegates.all as delegates %} {% if delegates %}

{% trans "People that can edit it" %}: {% for delegate in delegates %} {% safefullname delegate %}{% if not forloop.last %}, {% endif %} {% endfor %}

{% endif %} {% endwith %}

{% trans "This entity belongs to the domain" %} {{ entity.domain }}

{% if entity.has_metadata %}
{% if entity.entityid %}
{% trans "EntityID" %}
{{ entity.entityid }}
{% endif %} {% if entity.valid_until %}
{% trans "Valid until" %}
{% if entity.is_expired %}{{ entity.valid_until }} ({% trans "Expired!" %}){% else %}{{ entity.valid_until }}{% endif %}
{% endif %} {% if entity.endpoints %}
{% for endpoint in entity.endpoints %} {% endfor %}
{{ endpoint.Location }} ({{ endpoint.Type }})
{% endif %} {% if entity.contacts %}
{% trans "Contacts" %}
{% for contact in entity.contacts %} {% endfor %}
{{ contact.GivenName }} {{ contact.SurName }} ({{ contact.type }} {% trans "contact type" %})
{% endif %} {% if entity.organization %}
{% trans "Organization" %} {{ l10n_org.lang }}
{% for l10n_org in entity.organization %} {% if l10n_org.URL %} {% else %} {% endif %} {% endfor %}
{{ l10n_org.displayName }} {{ l10n_org.displayName }}
{% endif %} {% if entity.certificates %}
{% trans "Certificates" %}
{% for certificate in entity.certificates %} {% endfor %}
{{ certificate.text }} {% trans "Used for" %} {{ certificate.use }}
{% endif %}
{% trans "Changes feed" %}
{% trans "Changes feed" %}

Show history

{% for rev in revs %} {% if rev.previous %} {% else %} {% endif %} {% endfor %}
Rev Id Diff Date Author Log message
{{ forloop.revcounter }} @{{ rev.versionid|slice:"-5:" }} Prev diff - {{ rev.date }} {{ rev.author }} {{ rev.message }}
{% else %}
{% trans "This entity has no associated metadata yet." %}
{% endif %}
{% endblock %} {% block extrajs %} {% if entity.has_metadata %} {% endif %} {% endblock %}