{% extends 'admin/master.html' %} {% macro tile_icon(tile) -%} {%- if tile.icon_type == 'image' -%} {%- elif tile.icon_type == 'image-url' -%} {%- elif tile.icon_type == 'glyph' -%} {%- elif tile.icon_type == 'fa' -%} {%- else -%} {%- endif -%} {%- endmacro %} {% block body %}
{{ tile_icon({'icon_type': icon_type, 'icon_value': icon_value}) }}

{{ module }}

{% if intro %}

{{ intro }}

{% endif %} {% if docs_url %} Documentation {% endif %}
{% for section in sections %} {% if section.name %}

{{ section.name }}

{% if section.description %}

{{ section.description }}

{% endif %}
{% endif %}
{% for tile in section.tiles %} {{ tile_icon(tile) }} {{ tile.name }} {% if tile.description %}{{ tile.description }}{% endif %} {% endfor %}
{% endfor %}
{% endblock %}