{% extends "aristotle_mdr/base.html" %} {% load static from staticfiles %} {% load render_bundle from webpack_loader %} {% block title %}New Item{% endblock %} {% block webpack_css_bundle %} {% render_bundle 'wizard' 'css' %} {% endblock %} {% block webpack_bundle %} {% render_bundle 'wizard' 'js' %} {% endblock %} {% block content %}
{{ helpText }}
{% csrf_token %} {% if similarObjects %}
The following public objects were found with a title similar to "{{form.name.value}}".
Reusing existing metadata makes comparing data easier.
Consider reviewing these similar items to see if an existing piece of content meets your needs.
{% endif %} {% if clone %}
You are cloning the {{ clone.get_verbose_name }} {{ clone.name }}.
Reusing existing metadata makes comparing data easier.
If you want to make a new version of this item, consider superceding this item instead.
Cloning metadata is only useful when making alterations that drastically change the semantics of the object.
Consider reviewing these similar items to see if an existing piece of content meets your needs.
{% endif %}
{% block form_title %} {% endblock %} {% if ss %}
The key to good metadata is reuse.

Enter a name and short description for the what you would like to create, and Aristotle will do a quick search to see if similar objects exist to reuse.

If no items with similar terms exist, your search terms will be used to pre-populate any new items you create. {% endif %} {% for field in form %}

{{ field.label_tag }} {{ field.help_text }} {% if field.errors %} {{ field.errors }} {% endif %} {{ field }} {% if field.errors %} {% endif %}
{% endfor %} {% block form_details %} {% endblock %}
{% endblock %}