{% extends "base.html" %} {% macro write_toc(title, subgroups) %}
  • {{ title }}
  • {% endmacro %} {% macro write_library_list(libs) %} {% for lib in libs | sort(attribute='fancyname')%} {% endfor %}
    Framework Maintainer
    {% for platform in available_platforms %} {% if lib.platforms.get(platform) %} {% endif %} {{ platform }} {% if lib.platforms.get(platform) %} {% endif %} {% endfor %}
    {{lib.fancyname}} {% if qch %} [QCH file]{% endif %} {% if man %} MAN{% endif %}
    {{lib.description}}
    {% set product = lib %}{% include "maintainers.html" %}
    {% endmacro %} {% block page_title %}{{ title }}{% endblock %} {% block footer %} {% endblock %} {% block title %} {{ group.fancyname }} {% endblock %} {% block content %}
    {% for paragraph in group.long_description %}

    {{ paragraph }}

    {% endfor %}

    List of the libraries

    {% if group.libraries | selectattr('subproduct', 'none') | list | length > 0 %} {% if group.subproducts | length > 0 %}

    Without subgroup

    {% endif %} {{ write_library_list(group.libraries | selectattr('subproduct', 'none') )}} {% endif %} {% for subproduct in group.subproducts |sort(attribute='order') %}

    {{ subproduct.fancyname }}

    {{ subproduct.description }}

    {{ write_library_list(subproduct.libraries) }} {% endfor %}
    {% endblock content %} {% block sidebar %} {% include "subgroup-sidebar.html" %} {% endblock %}