{% for deal in data.deals %}
                {% with index = loop.index0 %}
                    {% include "deal/deal-services.html" %}
                {% endwith %}
            {% endfor %}
            {% for product_data in data.products.values() %}
                {% with index = loop.index %}
                    {% include "deal/deal-product-services.html" %}
                {% endwith %}
            {% endfor %}