{% extends "aristotle_mdr_help/base.html" %} {% load i18n aristotle_help util_tags aristotle_tags %} {% block breadcumbs %}
  • Help
  • Concepts
  • {{ app.verbose_name }}
  • {{ model.get_verbose_name_plural }}
  • {% endblock %} {% block title %}Concept help - {{ model.get_verbose_name }}{% endblock %} {% block help_content %}
    {% relink object 'brief' %}
    {% if object.official_definition %}
    {% relink object 'official_definition' %} {% if object.official_reference %} {% if object.official_link %} {{ object.official_reference }} {% else %} {{ object.official_reference }} {% endif %} {% endif %}
    {% endif %}

    {% relink object 'body' %}

    {% with creation_tip=object|relinked:"creation_tip" %} {% if custom_help.creation_tip or creation_tip %}

    Creation Tips

    Tips for creating {{model_name_plural}}
    {% if custom_help.creation_tip %}
    {{ custom_help.creation_tip | bleach }}
    {% else %}
    {{ creation_tip }}
    {% endif %} {% endif %} {% endwith %} {% if custom_help.extra_help %}

    Registry specific help

    {{ custom_help.extra_help | bleach }}

    {% endif %} {% if custom_help.field_help %}

    Registry defined field help

    {% for field_name, field_help in custom_help.field_help.items %}
    {% with field=custom_help.content_type|get_field:field_name %} {{ field.verbose_name.title }} {% endwith %}
    {{ field_help | bleach }}
    {% endfor %}
    {% endif %} {% if custom_fields %}

    Custom Fields

    {% for custom_field in custom_fields %}
    {{ custom_field.name }}
    {% if custom_field.help_text_long %} {{ custom_field.help_text_long | bleach }} {% else %} No help text available for this Custom Field. {% endif %}
    {% endfor %}
    {% endif %} {% endblock %}