{% extends 'aristotle_mdr/base.html' %} {% load humanize i18n %} {% load static compile_static %} {% load aristotle_tags %} {% block extra_head_scripts %} {% if item|can_edit:request.user %} {% endif %} {% endblock %} {% block title %} {{ item.name }} {% if item.version %} - v{{ item.version }} {% endif %} ({{ item.get_verbose_name }}) {% endblock %} {% block content %}

{{ item.name }} {% if item.version %} {{ item.version }} {% endif %} ({{ item.get_verbose_name }}) {# Screen reader quick links #} {% if item|can_edit:request.user and request.user.is_staff %} {% trans 'Edit in admin'%} {% elif item|can_edit:request.user %} {% trans 'Open item editor'%} {% endif %}

{% include "aristotle_mdr/concepts/actionbar.html" %}
{% include "aristotle_mdr/concepts/infobox.html" %} {% include "aristotle_mdr/concepts/visibilityInfoBar.html" %}

{% trans 'Definition'%}

{{ item.definition | safe}}
{% if item.short_name or item.synonyms %}

Alternate names:

{% if item.short_name %}
{% trans 'Short name'%}
{{ item.short_name }}
{% endif %} {% if item.synonyms %}
{% trans 'Synonyms'%}
{{ item.synonyms }}
{% endif %}
{% endif %} {% block objSpecific %}{% endblock %} {% if item.comments %}

Comments

{{ item.comments | safe }} {% endif %} {% if item.references %}

References

{{ item.references | safe }}

{% if item.submitting_organisation %}

Submitting Organisation

{{ item.submitting_organisation }}

{% endif %} {% if item.responsible_organisation %}

Responsible Organisation

{{ item.responsible_organisation }}

{% endif %}
{% endif %} {% include "aristotle_mdr/slots/slots_display.html" %}

Related content

{% block relationships %}{% endblock %} {% for extension in config.CONTENT_EXTENSIONS %} {% extra_content extension item request.user %} {% endfor %}
{% endblock %}