{% extends 'base.html.twig' %}

{% block body %}
<h1>Items</h1>
{% for item in items %}
{{ item.getWidget()|raw }}
{% endfor %}

{% endblock %}