{% extends template_name %} {% load aristotle_tags i18n %} {% block formarea %} {% if wizard.form.errors %}
There were errors saving your {{ model_name }}, please review the errors shown below. {{ wizard.form.errors }} {% 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 duplicate_items %}
{{ duplicate_items.count }} items were found with a the name "{{ search_name }}".
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 duplicate_items %}
  1. {# #} {% include "search/searchItem.html" with item=obj %}
  2. {% endfor %}
{% elif similar_items %}
{{ similar_items.count }} items were found with a content similar to "{{ search_name }}".
Reusing existing content makes comparing items in the future easier.
Consider reviewing these similar items to see if an existing piece of content meets your needs.
    {% for obj in similar_items %}
  1. {# #} {% include "search/searchItem.html" with item=obj.object %}
  2. {% endfor %}
{% else %}

No matching items were found for reuse, so this wizard will help you create a new one.

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