{% extends "base.html" %} {% load static from staticfiles %} {% load template_filter %} {% block put_body %} {% for rows in layout %} {% for row, value in rows.items %}
{% for col in value %} {% for keyCol, valueCol in col.items %}
{% for colData in valueCol %} {{ colData.tile_id|template_tile:colData }} {% endfor %}
{% endfor %} {% endfor %}
{% endfor %} {% endfor %} {% endblock %}