2015-04-08 22:56:05 +00:00
|
|
|
{{ short_name }} {{ type.title()}}
|
|
|
|
{{ "=" * short_name|length }}{{ "=" * type|length }}=
|
2015-04-07 20:35:50 +00:00
|
|
|
|
2015-04-08 20:21:30 +00:00
|
|
|
Tree:
|
2015-04-07 20:35:50 +00:00
|
|
|
|
2015-04-08 22:56:05 +00:00
|
|
|
{% if children %}
|
|
|
|
|
2015-04-07 20:35:50 +00:00
|
|
|
.. toctree::
|
2015-04-08 20:21:30 +00:00
|
|
|
:hidden:
|
2015-04-08 22:56:05 +00:00
|
|
|
{% for item in children %}
|
|
|
|
/autoapi/{{ item.type }}/{{ item.id.split('.')[-1] }} {% endfor %}
|
2015-04-07 20:35:50 +00:00
|
|
|
|
2015-04-08 22:56:05 +00:00
|
|
|
{% endif %}
|
2015-04-08 20:21:30 +00:00
|
|
|
|
|
|
|
Table:
|
|
|
|
|
|
|
|
|
2015-04-08 22:56:05 +00:00
|
|
|
{% if children %}
|
2015-04-08 20:21:30 +00:00
|
|
|
|
|
|
|
.. list-table:: Classes
|
|
|
|
:widths: 20, 80
|
|
|
|
:header-rows: 1
|
|
|
|
|
|
|
|
* - Class
|
|
|
|
- Description
|
2015-04-08 22:56:05 +00:00
|
|
|
{% for item in children %} {% macro render() %}{{ item.summary }}{% endmacro %}
|
|
|
|
* - :dn:{{ item.type.lower().replace('class', 'cls').replace('interface', 'iface').replace('delegate', 'del') }}:`{{ item.id }}`
|
2015-04-08 20:21:30 +00:00
|
|
|
- {{ render()|indent(7) }}
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
{% endif %}
|