form.add.html.twig 697B

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