index.html.twig 857B

1234567891011121314151617181920212223242526272829303132333435
  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 {
  6. 'form' : add_form,
  7. 'form_name' : add_form_name
  8. } %}
  9. <input type="submit" />
  10. </form>
  11. #######
  12. {% include "MuzichCoreBundle:SearchElement:form.html.twig" with {
  13. 'form_name' : search_form_name,
  14. 'search_tags' : search_tags_id
  15. } %}
  16. {% include "MuzichCoreBundle:SearchElement:default.html.twig" %}
  17. {% if more_count is defined %}
  18. <span class="elements_more">
  19. <a href="{{ path('home_more', {'count': more_count}) }}" >
  20. {{ 'more'|trans({}, 'userui') }}
  21. </a>
  22. </span>
  23. {% endif %}
  24. {% endblock %}