1234567891011121314151617181920 |
- {% extends "MuzichHomeBundle::layout.html.twig" %}
-
- {% block title %}Réseau{% endblock %}
-
- {% block content %}
-
- <form action="{{ path('element_add') }}" method="post" {{ form_enctype(add_form) }}>
-
- {% include "MuzichCoreBundle:Element:form.add.html.twig" with { 'form': add_form } %}
-
- <input type="submit" />
- </form>
-
- #######
-
- {% include "MuzichCoreBundle:SearchElement:form.html.twig" %}
-
- {% render "MuzichCoreBundle:Search:doSearchElements" with { 'search': search_object } %}
-
- {% endblock %}
|