{% extends "aristotle_mdr/create/de_template_wrapper.html" %} {% load aristotle_tags i18n %} {% block formarea %} {% if wizard.form.errors %}
There were errors saving your Data Element, please review the errors shown below. {% if duplicate_items or similar_items %} {% if wizard.form.fields.make_new_item.errors %} There were similar items shown on the previous page. To save this item acknowledge that none of these are suitable or press back to review them again. {% endif %} {% endif %}
{% endif %} {% if de_matches %}
There are already Data Elements based on a "{{ dec_match.name }} ({{dec_match.id}})" and "{{ vd_match.name }} ({{vd_match.id}})".
Reusing existing content makes comparing items in the future easier.
Consider reviewing these items to see if an existing piece of content meets your needs.
    {% for obj in de_matches %}
  1. {% include "aristotle_mdr/create/wizard_search_result_item.html" with object=obj.object %}
  2. {% endfor %}
{% elif dec_match and vd_match %}

No standard items based on "{{ dec_match.name }}" and "{{ vd_match.name }}" were found, so a new one will be created.

{% elif dec_match %}

You've elected to create a new Data Element Concept, so you will need to create a new Data Element as well.

{% elif vd_match %}

You've elected to create a new Value Domain, so you will need to create a new Data Element as well.

{% else %}

You've elected to create a new Data Element Concept and Value Domain, so you will need to create a new Data Element as well.

{% endif %}
{% include "aristotle_mdr/create/concept_editor.html" with form=wizard.form %}
{% endblock %}