{% 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') %} {% endfor %} {% for message in app.flashes('error') %} {% endfor %}
{{ form_start(form) }}
Configuration for API
{{ form_widget(form.domainName) }}
{{ form_widget(form.username) }}
{{ form_widget(form.password) }}
{{ form_widget(form.storeId) }}
{{ form_widget(form.storeCode) }}
{% if rootCategoryList is not null %}
{{ form_widget(form.rootCategory) }}
{% endif %} {% if attributeSetIdList is not null %}
{{ form_widget(form.attributeSetId) }}
{% endif %}
Configuration for CronJob
{{ form_widget(form.productsCronJob) }}
{{ form_end(form) }}
{% endblock %}