{% load i18n %} {% load staticfiles %} {% if concept.id == '00000000-0000-0000-0000-000000000003' %}

{{prefLabel}} ({{lang}})

({{concept.nodetype}})
{% 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 "Manage the dropdown values that appear in forms here." %}

The DropDowns node contains an entry for each controlled vocabulary (as defined in the resource graphs loaded into Arches as part of this application). You can define the values that appear in each dropdown in the data entry forms by clicking on a controlled vocabulary (such as Actor_Type.E55) and clicking the "Add dropdown entry" link.


{% else %}

{{prefLabel}} ({{lang}})

({{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" %}
{% endif %}