{% extends "base.html" %} {% block title %}{{ enum.title|e }}{% endblock %} {% block content %}

Enum {{ enum.title|e }}
{{ sections.brief(enum) }}

{{ sections.top_box(enum) }} {{ sections.enum_values(enum, doc) }} {% if enum.internals or enum.deprecation_msgs or enum.warnings or enum.notes or enum.akas or not enum.body.empty %}

Detailed Description

{% if enum.internals %}
Internal:

For internal use only.

{% endif %} {% if enum.deprecation_msgs %} {% for msg in enum.deprecation_msgs %}
Deprecated.

{{ msg|transtext(False) }}

{% endfor %} {% endif %} {% if enum.warnings %} {% for msg in enum.warnings %}
Warning:

{{ msg|transtext(False) }}

{% endfor %} {% endif %} {% if enum.notes %} {% for msg in enum.notes %}
Note:

{{ msg|transtext(False) }}

{% endfor %} {% endif %} {% if enum.akas %}
Also known as:

{{ enum.akas|join(', ') }}

{% endif %} {{ sections.body(enum) }}
{% endif %} {{ sections.see_also(enum) }} {{ sections.dox_source(enum, in_comment=True) }} {% endblock %}