{% trans "Entity details" %}
{% if MODERATION_ENABLED and entity.state != "published" %}
{{ entity }} ({{ entity.state }})
{% else %}
{{ entity }}
{% endif %}
{% if entity.has_metadata %}
{% trans "Download XML" %}
{% 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.logos %}
- {% trans "Logo" %}
-
{% for l10n_logo in entity.logos %}
|
|
{% endfor %}
{% endif %}
{% if entity.endpoints %}
-
{% for endpoint in entity.endpoints %}
({{ endpoint.Type }}) |
{{ endpoint.Binding|get_binding_short }} |
{{ endpoint.Location }} |
- {% trans "Endpoints" %}
{{endpoint}}
|
{% endfor %}
{% endif %}
{% if entity.contacts %}
- {% trans "Contacts" %}
-
{% for contact in entity.contacts %}
{{ contact.GivenName }} {{ contact.SurName }} |
({{ contact.type }} {% trans "contact type" %}) |
{% endfor %}
{% endif %}
{% if entity.organization %}
- {% trans "Organization" %}
-
{% for l10n_org in entity.organization %}
{% if l10n_org.URL %}
{{ l10n_org.displayName }} |
|
{% else %}
{{ l10n_org.displayName }} |
|
{% endif %}
{% endfor %}
{% endif %}
{% if entity.certificates %}
- {% trans "Certificates" %}
-
{% for certificate in entity.certificates %}
{{ certificate.text|truncatechars:9 }}
{{ certificate.text|letterwrap:64 }}
|
{% trans "Used for" %} {{ certificate.use }} |
{% endfor %}
{% endif %}
- {% trans "Changes feed" %}
- {% trans "Changes feed" %}
{% if entity.geolocationhint %}
{% endif %}
Rev |
Id |
Diff |
Date |
Author |
Log message |
{% for rev in revs %}
{{ forloop.revcounter }} |
@{{ rev.versionid|slice:"-5:" }}
|
{% if rev.previous %}
Prev diff
|
{% else %}
- |
{% endif %}
{{ rev.date }} |
{{ rev.author }} |
{{ rev.message }} |
{% endfor %}
{% else %}
{% trans "This entity has no associated metadata yet." %}
{% endif %}
{% endblock %}
{% block extrajs %}
{% if entity.has_metadata %}
{% if entity.geolocationhint %}
{% endif %}
{% endif %}
{% endblock %}