{% extends "base.html" %} {% import "macros.html" as macros %} {% block title %}{{ doc.title }}{% endblock title %} {% block content %}

{{ doc.name }}

{% if doc.deprecated %}Deprecated{% endif %}
{% if doc.supers %}
supers: {{ doc.supers | safe }}
{% endif %}
{% if doc.display %}
{{ doc.display | safe }}
{% endif %} {% if doc.deprecated %}
Deprecated{{ doc.deprecated }}
{% endif %} {% if doc.description %}
{{ doc.description }}
{% endif %} {% if doc.see %}
See: {{ doc.see }}
{% endif %} {% if doc.other %}
{{ doc.other }}
{% endif %} {% if doc.methods %}

Methods{{ doc.methods | length }}

{% for m in doc.methods %}{{ macros::member(m=m) }}{% endfor %}
{% endif %} {% if doc.fields %}

Fields{{ doc.fields | length }}

{% for f in doc.fields %}{{ macros::member(m=f) }}{% endfor %}
{% endif %} {% endblock content %} {% block toc %} {% if doc.methods or doc.fields %} {% endif %} {% endblock toc %}