{% load cache %} {% cache 300 'nm-modhelp' ct %} {% spaceless %}

{% trans 'Help for object' %}: {% trans ct.name %}

{% if model_help %}

{{ model_help.short }}

{{ model_help.long|safe }} {% endif %} {% if fields_help %}

{% trans 'Fields help' %}

{% for h in fields_help %}

{{ h.verbose_name }} — {{ h.short }}{% if h.help_text %} — {{ h.help_text }}{% endif %}

{{ h.long|safe }} {% endfor %} {% endif %}

{% trans 'Model doc' %}

{{ model_doc }}

{% endspaceless %} {% endcache %}