{% extends "web/article.html" %} {% block breadcrumbs %}
  • {{version.topic.name}}
  • › {{version.name}}
  • {% endblock %} {% block article_content %}

    {{version.topic.name}} for {{version.name}}

    {% if second_column %} {% endif %}
    {% for section in first_column %}

    {{section.name}}

      {% for namespace in section.namespace_set.all %}
    • {{namespace.name}}
    • {% endfor %} {% if section.has_free_elements %} {% if section.namespace_set.count > 0 %}
    • Other Elements
      • {% endif %} {% for element in section.free_element_set.all %}
      • {{element.name}} - {{ element.description|safe }}
      • {% endfor %} {% if section.namespace_set.count > 0 %}
      {% endif %} {% endif %}
    {% endfor %}
    {% for section in second_column %}

    {{section.name}}

      {% for namespace in section.namespace_set.all %}
    • {{namespace.name}}
    • {% endfor %} {% if section.has_free_elements %} {% if section.namespace_set.count > 0 %}
    • Other Elements
      • {% endif %} {% for element in section.free_element_set.all %}
      • {{element.name}} - {{ element.description|safe }}
      • {% endfor %} {% if section.namespace_set.count > 0 %}
      {% endif %} {% endif %}
    {% endfor %}
    {% endblock %}