{% extends "aristotle_mdr/create/dec_template_wrapper.html" %} {% block formarea %} {{ form.errors }} {% if form.oc_options or form.pr_options %}
The following components matched your criteria.

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. {% if form.oc_options|length > 20 or form.pr_options|length > 20 %}

The terms you entered have returned too many results to show, consider going back and narrowing your search terms.
{% endif %}
{% endif %}
Pick an object class.
{% if form.oc_options %}

The following object classes were found with a name like "{{ oc_name }}" {% if oc_definition %} and definition like "{{ oc_definition }}" {% endif %} elligible for reuse.

{{ form.oc_options.label_tag }}
    {% for id, obj in form.oc_options.field.choices|slice:":-1" %}
  1. {% include "aristotle_mdr/create/wizard_search_result_item.html" with object=obj.object %}

  2. {% endfor %}
{% else %}

No matching object classes were found for with a name like "{{ oc_name }}" {% if oc_definition %} and definition like "{{ oc_definition }}" {% endif %} for reuse, so a new one will be created.

{% endif %}
Pick a property.
{% if form.pr_options %}

The following properties were found with a name like "{{ pr_name }}" {% if pr_definition %} and definition like "{{ pr_definition }}" {% endif %} elligible for reuse.

{{ form.pr_options.label_tag }}
    {% for id, obj in form.pr_options.field.choices|slice:":-1" %}
  1. {% include "aristotle_mdr/create/wizard_search_result_item.html" with object=obj.object %}

  2. {% endfor %}
{% else %}

No matching properties were found for with a name like "{{ pr_name }}" {% if pr_definition %} and definition like "{{ pr_definition }}" {% endif %} for reuse, so a new one will be created.

{% endif %}
{% endblock %}