{% extends 'base.html.twig' %} {% set titleName = "Magento Configuration" %} {% block title %} POWER DATA | {{titleName}} {% endblock %} {% block page %}{{titleName}}{% endblock %} {% block breadcrumb %} {% if titleName != "Home" %} {{titleName}} {% endif %} {% endblock %} {% block content %} {% for message in app.flashes('success') %} {{ message }} × {% endfor %} {% for message in app.flashes('error') %} {{ message }} × {% endfor %} {{ form_start(form) }} Configuration for API Domaine {{ form_widget(form.domainName) }} Username {{ form_widget(form.username) }} Password {{ form_widget(form.password) }} Store Id {{ form_widget(form.storeId) }} Store Code {{ form_widget(form.storeCode) }} {% if rootCategoryList is not null %} Root Category {{ form_widget(form.rootCategory) }} {% endif %} {% if attributeSetIdList is not null %} attribute Set Id {{ form_widget(form.attributeSetId) }} {% endif %} Configuration for CronJob Products CronJob {{ form_widget(form.productsCronJob) }} {{ form_end(form) }} {% endblock %}