{% 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 }}
  • {% if this_is_a_custom_field %}
  • {{field}}
  • {% else %}
  • {{field.verbose_name.title}}
  • {% endif %} {% endblock %} {% block title %} {% if this_is_a_custom_field %} Custom Field help - {{ model.get_verbose_name }} - {{field}} {% else %} Field help - {{ model.get_verbose_name }} - {{field.verbose_name.title}} {% endif %} {% endblock %} {% block help_content %} {% if this_is_a_custom_field %}

    Help text for Custom Field {{ field }}

    Short help
    {% if custom_field.help_text %} {{ custom_field.help_text|bleach }} {% else %}

    No text available.

    {% endif %}
    Detailed help
    {% if custom_field.help_text_long %} {{ custom_field.help_text_long | bleach }} {% else %}

    No text available.

    {% endif %}
    {% else %}

    Help text for field {{ field.verbose_name.title }}

    ISO 11179 help definition
    {% if field.help_text %} {{ field.help_text }} {% else %}

    No text available.

    {% endif %}
    Registry specific help
    {% if custom_help %} {{ custom_help | bleach }} {% else %}

    No text available.

    {% endif %}
    {% endif %} {% endblock %}