{% extends template_name %} {% load aristotle_tags i18n static %} {% block extra_head_scripts %} {{ block.super }} {% comment %} {% endcomment %} {% endblock %} {% 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 "aristotle_mdr/create/wizard_search_result_item.html" with object=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 "aristotle_mdr/create/wizard_search_result_item.html" with object=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 weak_formsets=weak_formsets through_formsets=through_formsets slots_FormSet=slots_FormSet %}
{% endblock %} {% block underform %} {% for formset in weak_formsets %} {% include 'aristotle_mdr/generic/actions/alter_one_to_many_formstage.html' with formset=formset.formset %} {% endfor %} {% for formset in through_formsets %} {% include 'aristotle_mdr/generic/actions/alter_one_to_many_formstage.html' with formset=formset.formset %} {% endfor %} {% if slots_FormSet %} {% include 'aristotle_mdr/generic/actions/alter_one_to_many_formstage.html' with formset=slots_FormSet %} {% endif %} {% if recordrelation_FormSet %} {% include 'aristotle_mdr/generic/actions/alter_one_to_many_formstage.html' with formset=recordrelation_FormSet %} {% endif %} {% endblock %} {% block next_button %} {% endblock %} {% block content_container_start %}
{% endblock %} {% block content_container_end %}
{% endblock %}