{% extends "base_document.html" %} {% macro render_content(msgcontent) %} {% if msgcontent is not blacklisted(message) %} {% if msgcontent is component %} Component {% else %} {{ msgcontent.TagText }} {% endif %} {% if msgcontent is component %} {{ msgcontent.FieldName }} {% else %} {{ msgcontent.FieldName }} {% endif %} {{ msgcontent.AbbrName }} {% if msgcontent.Reqd %}✔{% endif %} {{ msgcontent.Description }} {{ msgcontent.attrib.deprecated }} {% endif %} {% endmacro %} {% macro render_message(message) %} {% if message is not blacklisted %}

{{ message.Name }}

{{ message.Description }}

{% for msgcontent in lookup.msgcontents(message.ComponentID) %} {{ render_content(msgcontent) }} {% endfor %}
Field/Component Field Name FIXML name Req'd Comments Depr.
{% endif %} {% endmacro %} {% block page_body %}

FIX specification

Messages

{% for message in messages %} {{ render_message(message) }} {% endfor %}

Components

{% for component in components %} {% if component is not blacklisted %}

{{ component.Name }}

{{ component.Description }}

{% for msgcontent in lookup.msgcontents(component.ComponentID) %} {{ render_content(msgcontent) }} {% endfor %}
Field/Component Field Name FIXML name Req'd Comments Depr.
{% endif %} {% endfor %}

{{ repository.version }}

{% endblock %}