Overview
Title:
{{ data.text.title }}
Webpages:{{ data.text.totalPages}}
{% if special_restrictions %}
Applicable Restrictions:
{{ special_restrictions }}
{% endif %}
All licenses found:
By Page
{% macro render_detail(detail) -%}
{{ detail.title }} {% if detail.license %} -
{{ detail.license.label }} {{ detail.license.version or "" }}
{% endif %} {% if detail.children %}
{% for child in detail.children %} {{ render_detail(child) }} {% endfor %}
{% endif %}
{% endmacro %}
{{ render_detail(data.text) }}