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 %}
{# #}
{% include "search/searchItem.html" with item=obj %}
{% 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 %}
{# #}
{% include "search/searchItem.html" with item=obj.object %}
{% 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 %}