element.edit.html.twig 661B

12345678910111213141516171819
  1. {% extends "MuzichHomeBundle::layout.html.twig" %}
  2. {% block title %}{{ 'title.element.edit'|trans({}, 'userui') }}{% endblock %}
  3. {% block content %}
  4. <span class="sinfo">{{ 'system.infos.normally_js'|trans({}, 'userui') }}</span>
  5. <form novalidate name="{{ form_name }}" action="{{ path('element_update', {'element_id': element_id}) }}" method="post" {{ form_enctype(form) }}>
  6. {% include "MuzichCoreBundle:Element:form.edit.html.twig" with {
  7. 'form' : form,
  8. 'form_name' : form_name
  9. } %}
  10. <input type="submit" value="{{ 'element_edit.submit.value'|trans({}, 'userui') }}" class="button" />
  11. </form>
  12. {% endblock %}