{% extends "eats/edit/base.html" %} {% load entity_display %} {% block eats_title %}{{ block.super }} entity {{ preferred_name }}{% endblock %} {% block eats_style %}{{ block.super }} {{ entity_relationship_formset.media.css }} {% endblock eats_style %} {% block eats_js %}{{ block.super }} {{ entity_relationship_formset.media.js }} {% endblock eats_js %} {% block eats_content %}

Edit entity {{ preferred_name }}

{% csrf_token %}
{{ current_authority_form.current_authority.label_tag }}: {{ current_authority_form.current_authority }}
{% csrf_token %}
Existences {{ existence_formset.management_form }} {% for form in existence_formset %} {% endfor %} {% for assertion in existence_non_editable %} {% endfor %}
Delete? Authority Dates
{% if form.instance %}{{ form.DELETE }}{% endif %}{{ form.assertion }} {{ form.authority }} {% if form.instance %}{% with dates=form.instance.get_dates %}{% if dates %}{% endif %}{% endwith %}

Add a date

{% endif %}
{% if form.errors %}
    {% for error in form.errors.values %}
  • {{ error }}
  • {% endfor %}
{% endif %}
{{ assertion.authority.get_admin_name }} {% with dates=assertion.get_dates %}{% if dates %}
    {% for date in dates %}
  • {{ date.assembled_form }}
  • {% endfor %}
{% endif %}{% endwith %}
Entity types {{ entity_type_formset.management_form }} {% for form in entity_type_formset %} {% endfor %}
Delete? Entity type Dates
{% if form.instance %}{{ form.DELETE }}{% endif %}{{ form.assertion }}
{{ form.entity_type }}
{% if form.errors.entity_type %}
{{ form.errors.entity_type }}
{% endif %}
{% if form.instance %}{% with dates=form.instance.get_dates %}{% if dates %}{% endif %}{% endwith %}

Add a date

{% endif %}
{{ form.non_field_errors }}
{% if entity_type_non_editable %}

Other authorities classify this entity as:

    {% for assertion in entity_type_non_editable %}
  • {{ assertion.entity_type.get_admin_name }} {% display_property_assertion_authority assertion %} {% display_property_assertion_dates assertion %}
  • {% endfor %}
{% endif %}
Names {{ name_formset.management_form }} {% for form in name_formset %} {% cycle 'assertion-row1' 'assertion-row2' as assertion_row silent %} {% if form.instance %} {% endif %} {% endfor %}
Delete? Name type Language Script Display form Is preferred? Dates
{{ form.instance.name.assembled_form }}
{% if form.instance %}{{ form.DELETE }}{% endif %}{{ form.assertion }} +
{{ form.name_type }}
{% if form.errors.name_type %}
{{ form.errors.name_type }}
{% endif %}
{{ form.language }}
{% if form.errors.language %}
{{ form.errors.language }}
{% endif %}
{{ form.script }}
{% if form.errors.script %}
{{ form.errors.script }}
{% endif %}
{{ form.display_form }}
{% if form.errors.display_form %}
{{ form.errors.display_form }}
{% endif %}
{{ form.is_preferred }}
{% if form.errors.is_preferred %}
{{ form.errors.is_preferred }}
{% endif %}
{% if form.instance %}{% with dates=form.instance.get_dates %}{% if dates %}{% endif %}{% endwith %}

Add a date

{% endif %}
{{ form.non_field_errors }}{{ form.name_part_formset.management_form }}
{% for part_form in form.name_part_formset %} {% for id, display_form, language, script in part_form.name_part_fieldsets %} {% endfor %} {% endfor %}
{% if part_form.instance %}{{ part_form.DELETE }}{% endif %} {{ part_form.name_part_type }}{{ id }}{{ display_form }}+
Language: {{ language }}
Script: {{ script }}
{% if name_non_editable %}

Other authorities name this entity:

    {% for assertion in name_non_editable %}
  • {{ assertion.name.assembled_form }} {% display_property_assertion_authority assertion %} {% display_name_metadata assertion.name %} {% display_property_assertion_dates assertion %}
  • {% endfor %}
{% endif %}
Relationships {{ entity_relationship_formset.management_form }} {% for form in entity_relationship_formset %} {% endfor %}
Delete? Relationship Related entity Dates
{% if form.instance %}{{ form.DELETE }}{% endif %}{{ form.assertion }}
{{ form.relationship_type }}
{% if form.errors.relationship_type %}
{{ form.errors.relationship_type }}
{% endif %}
{{ form.related_entity }} {% if form.instance %}[view record]{% endif %}
{% if form.errors.related_entity %}
{{ form.errors.related_entity }}
{% endif %}
{% if form.instance %}{% with dates=form.instance.get_dates %}{% if dates %}{% endif %}{% endwith %}

Add a date

{% endif %}
{% if entity_relationship_non_editable %}

Other authorities state that this entity:

    {% for assertion in entity_relationship_non_editable %}
  • {% display_entity_relationship_property_assertion entity assertion %} {% display_property_assertion_authority assertion %} {% display_property_assertion_dates assertion %}
  • {% endfor %}
{% endif %}
Notes {{ note_formset.management_form }} {% for form in note_formset %} {% endfor %}
Delete? Note
{% if form.instance %}{{ form.DELETE }}{% endif %}{{ form.assertion }}
{{ form.note }}
{% if form.errors.note %}
{{ form.errors.note }}
{% endif %}
{% if note_non_editable %}

Other authorities say about this entity:

    {% for assertion in note_non_editable %}
  • {{ assertion.note }}

    {% display_property_assertion_authority assertion %}

  • {% endfor %}
{% endif %}
Subject Identifiers

Subject identifiers are URLs of resources that are specifically about this entity. For example, the URL http://en.wikipedia.org/wiki/Johann_Sebastian_Bach is an appropriate subject identifier for Johann Sebastian Bach.

If two entities have a subject identifier in common, that indicates that they are the same entity.

{{ subject_identifier_formset.management_form }} {% for form in subject_identifier_formset %} {% endfor %}
Delete? URL Possible duplicate entities
{% if form.instance %}{{ form.DELETE }}{% endif %}{{ form.assertion }}
{{ form.subject_identifier }}
{% if form.errors.subject_identifier %}
{{ form.errors.subject_identifier }}
{% endif %}
{% display_duplicate_subject_identifiers entity form.subject_identifier.value %}
{% if subject_identifier_non_editable %}

Other authorities specify the following URLs as representing this entity:

    {% for assertion in subject_identifier_non_editable %}
  • {% with assertion.subject_identifier as subject_identifier %} {{ subject_identifier }} {% display_property_assertion_authority assertion %} {% display_duplicate_subject_identifiers entity subject_identifier %} {% endwith %}
  • {% endfor %}
{% endif %}

It may be possible for you to delete this entity.

{% endblock eats_content %}