{% extends '::base_admin.html.twig' %} {% if id is defined %} {% set _title = 'Update a category' %} {% else %} {% set _title = 'Create a new category' %} {% endif %} {% set _route = app.request.attributes.get('_route') %} {% block title %}{{ _title|trans }}{% endblock %} {% block breadcrumb %} {% endblock %} {% block body %} {{ breadcrumb() }}
{% if languages.1 is defined %}
    {% for language in languages %}
  • {{ language.locale }}
  • {% endfor %}
{% for language,form in forms %}
{{ form_row(form.title, {'id' : language ~ 'category_title', 'form_type' : 'horizontal', attr: {'class' : 'input-xlarge'}} ) }} {{ form_row(form.description, {'id' : language ~ 'category_description', 'form_type' : 'horizontal', attr: {'class' : 'input-xlarge'}} ) }} {{ form_rest(form, {'form_type' : 'horizontal', attr: {'class' : 'input-xxlarge'}}) }}
{% endfor %}
{% else %}
{{ form_rest(form, {'form_type' : 'horizontal', attr: {'class' : 'input-xxlarge'}}) }}
{% endif %}
{% endblock %}