These fields help identify and define the item.
A name and definition are required, but adding a version is optional.
{{ form.name.label_tag }}
{% if form.name.errors %}
{{ form.name.errors }}
{% endif %}
{{ form.name }}
{{ form.name.help_text }}
{% if form.name.errors %}
{% endif %}
{{ form.version.label_tag }}
{% if form.version.errors %}
{{ form.version.errors }}
{% endif %}
{{ form.version }}
{{ form.version.help_text }}
{% if form.version.errors %}
{% endif %}
{{ form.workgroup.label_tag }}
{{ form.workgroup.help_text }}
The workgroup responsible for maintaining this metadata item.
{% if form.workgroup.errors %}
{{ form.workgroup.errors }}
{% endif %}
{{ form.workgroup }}
{% if form.workgroup.errors %}
{% endif %}
{{ form.definition.label_tag }} {{ form.definition.help_text }}
{% if form.definition.errors %}
{{ form.definition.errors }}
{% endif %}
{{ form.definition }}
{% if form.definition.errors %}
{% endif %}
These fields are optional
but give extra context to this item, so add where appropriate.
{% for field in form.concept_fields %}
{{ field.label_tag }} {{ field.help_text }}
{% if field.errors %}
{{ field.errors }}
{% endif %}
{{ field }}
{% if field.errors %}
{% endif %}
{% endfor %}
{% if form.object_specific_fields %}
{% for field in form.object_specific_fields %}
{% if forloop.first %}
These fields are optional
but give extra context to this item, so add where appropriate.
Don't worry if you don't fill these out now, these can
be filled in at a later stage.
{% endif %}
{{ field.label_tag }} {{ field.help_text }}
{% if field.errors %}
{{ field.errors }}
{% endif %}
{{ field }}
{% if field.errors %}
{% endif %}
{% endfor %}
{% endif %}
{% if show_slots_tab %}
Slots can be used to annotate metadata with additional key-value pairs.
Below are the slots that have been configured to be used with
your registry for this particular metadata type.
{% include 'aristotle_mdr/slots/slots_editor_tab.html' %}
{% endif %}
{% if show_id_tab %}
Links can be used to annotate metadata with additional key-value pairs.
Below are the slots that have been configured to be used with
your registry for this particular metadata type.
{% include 'aristotle_mdr/identifiers/identifiers_editor_tab.html' %}
{% endif %}
{% if form.change_comments %}
{% endif %}
How to use this creation wizard
This wizard is designed to help you create well-defined,
reusable metadata.
Each tab in this wizard covers metadata for different purposes:
- Definition
- The fields in this tab cover the basic definition
of an object fields. Name and Definition
are always required, while Version may be
optional depending on your agency.
- Names & References
-
The fields in this tab are common to all concepts in this registry
and are all optional. Where possible completing fields adds
additional context to metadata to make it more discoverable,
complete and resuable.
- {{ model_name|title }} Components
-
The fields in the tab are specific to {{model_name_plural}}
and allow for item specific metadata and relations to be
recorded.
For more information on {{model_name_plural}}, read the
help page.
{% if help %}
Help on {{ model_name_plural }}
For more information on {{model_name_plural}}, read the
help page.
{% relink help 'creation_tip' %}
{% endif %}