{% extends 'base.html.twig' %} {% block title %}Import Excel {% endblock %} {% block body %} {{ form_start(form, { 'attr': { 'class': 'excel-import-form', 'enctype': 'multipart/form-data' } }) }}
{{ form_row(form.file) }}
{{ form_row(form.submit) }}
{{ form_end(form) }} {% for message in app.flashes('success') %}
{{ message }}
{% endfor %} {% endblock %}