index.html.twig 521B

1234567891011121314151617181920
  1. {% extends "MuzichHomeBundle::layout.html.twig" %}
  2. {% block title %}Réseau{% endblock %}
  3. {% block content %}
  4. <form action="{{ path('element_add') }}" method="post" {{ form_enctype(add_form) }}>
  5. {% include "MuzichCoreBundle:Element:form.add.html.twig" with { 'form': add_form } %}
  6. <input type="submit" />
  7. </form>
  8. #######
  9. {% include "MuzichCoreBundle:SearchElement:form.html.twig" %}
  10. {% render "MuzichCoreBundle:Search:doSearchElements" with { 'search': search_object } %}
  11. {% endblock %}