{% load i18n %} {% load staticfiles %}

{{prefLabel.value}} ({{prefLabel.language}})

({{concept.nodetype}})
{% trans "Member Hierarchy" %} {% trans "Add dropdown entry" %}
{% for path in concept_paths%} {% with forloop.last as show_children %}
{% for parent_concept in path %}
{% with ''|center:forloop.counter0 as range %} {% for i in range %}...{% endfor %} {% endwith %} {{parent_concept.label}}
{% if forloop.last %}{% with ''|center:forloop.counter as range %} {% if show_children%} {% for childmember in concept.subconcepts %}
...{% for i in range %}...{% endfor %} {{childmember.prefLabel.value}}
{% endfor %} {% endif %} {% endwith %}{% endif %} {% endfor %}
{% endwith %} {% endfor %}

{% trans "Labels" %} {% trans "Add label" %}
{% for value in labels %}
{% if labels|length > 1 %} {% endif %} {{value.value}} ({% if value.type == 'prefLabel' %}preferred, {% endif %}{{value.language}})
{% endfor %}

{% trans "Notes" %} {% trans "Add note" %}
{% for value in concept.values %} {% if value.category == 'note' %}
{{value.type}} ({{value.language}})
{{value.value}}
{% endif %} {% endfor %}

{% trans "Values" %} {% trans "Add value" %}
{% for value in concept.values %} {% if value.category == 'undefined' %}
{{value.type}} {{value.value}}
{% endif %} {% endfor %}

{% trans "Identifiers" %}
{% trans "Arches ID:" %} {{concept.id}}
{% include "views/rdm/modals/value-form.htm" %}