{% extends 'aristotle_mdr/downloads/pdf/pdf.html' %} {% load aristotle_tags aristotle_help %} {% block title %}{{ item.name }}{% endblock %} {% block content %}

{{ item.name }} ({{ item.get_verbose_name }})

{{ item.definition | safe }}
{% include "aristotle_mdr/statuses.html" with statuses=item.current_statuses only %}
Supersedes:
    {% for sup in item.supersedes.all %}
  • {{ sup }} (id {{ sup.id }})
  • {% empty %}
  • -
  • {% endfor %}
Superseded by:
{% block objSpecific %} {% endblock %}
{% if subitems %}

Additional Components

{% for type,subitemset in subitems %}

{{type.get_verbose_name}}

{% help_doc type 'brief' %}

{% for i in subitemset %}
{% include i|template_path:'pdf,inline' with item=i header='h3' only %}
{% endfor %}
{% endfor %} {% endif %} {% if item.slots.count > 0 %} {% include "aristotle_mdr/slots/pdf/slots_display.html" %} {% endif %}
{% endblock %}