form.edit.html.twig 623B

1234567891011121314151617181920212223
  1. {% form_theme form 'MuzichCoreBundle:Form:errors.html.twig' %}
  2. {{ form_errors(form) }}
  3. <div class="field">
  4. {{ form_errors(form.url) }}
  5. {{ form_label(form.url, 'element_edit.url.name'|trans({}, 'userui')) }}
  6. {{ form_widget(form.url) }}
  7. </div>
  8. <div class="field">
  9. {{ form_errors(form.name) }}
  10. {{ form_label(form.name, 'element_edit.name.name'|trans({}, 'userui')) }}
  11. {{ form_widget(form.name) }}
  12. </div>
  13. {% include "MuzichCoreBundle:Tag:tagsPrompt.html.twig" with {
  14. 'form_name' : form_name
  15. } %}
  16. {{ form_widget(form.tags, { 'attr': {'class': 'tagBox_tags_ids'} }) }}
  17. {{ form_row(form._token) }}