{% extends "aristotle_mdr/user/base.html" %} {% load aristotle_tags aristotle_help i18n %} {% block sidebar %} {% include "aristotle_mdr/user/userSideBar.html" with activeTab='create_list' %} {% endblock %} {% block page %}

{% block title %}{% trans "Create New Metadata" %}{% endblock %}

{% if wizards %}

{% trans "Create metadata using a Wizard" %}

or
{% endif %}

{% trans "Just create a single metadata item" %}

Below is a list of all metadata types that can be created within this registry. You can create new metadata to be saved in your Sandbox, or add it to your workgroups. Each item has a basic description, but to get more information on a concept type click the question mark () next to its name.

{% for app_models in models %}
{% firstof app_models.app.create_page_name app_models.app.verbose_name %}
{% if app_models.app.create_page_description %}

{{ app_models.app.create_page_description }}

{% endif %} {% for model in app_models.models %} {% with m=model.content_type model=model.class %} {% if model.concept %} {% endif %} {% endwith %} {% endfor %}
{% trans "Create new" %} {% trans "Help" %} {% trans "Basic description" %}
{{ model.get_verbose_name }} {% help_doc model %} Create {{ model.get_verbose_name }}
{% endfor %} {% endblock %}