Fix hierarchy, and include object itself in it.

This commit is contained in:
Eric Holscher 2015-04-24 12:46:47 -07:00
parent c79a0f3cee
commit 6410bee011

View File

@ -1,5 +1,3 @@
{% block title %}
{{ obj.short_name }} {{ obj.type.title()}}
@ -14,6 +12,7 @@
{% block summary %}
{%- if obj.summary %}
Summary
-------
@ -23,15 +22,18 @@ Summary
{% endblock %}
{% block inheritance %}
{%- if obj.inheritance %}
Inheritance Hierarchy
---------------------
{%- for item in inheritance %}
{%- for item in obj.inheritance %}
* :dn:{{ item.ref_directive }}:`{{ item.id }}`
{%- endfor %}
* :dn:{{ obj.ref_directive }}:`{{ obj.id}}`
{%- endif %}
{% endblock %}
{% block syntax %}