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

Tag {{ tag.title|e }}
{{ sections.brief(tag) }}

{{ sections.top_box(tag) }} {{ sections.tparams_ov(tag) }} {% if tag.internals or tag.deprecation_msgs or tag.warnings or tag.notes or tag.akas or not tag.body.empty %}

Detailed Description

{% if tag.internals %}
Internal:

For internal use only.

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

{{ msg|transtext(False) }}

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

{{ msg|transtext(False) }}

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

{{ msg|transtext(False) }}

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

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

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