1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- {% extends "MuzichHomeBundle::layout.html.twig" %}
-
- {% block title %}Réseau{% endblock %}
-
- {% block content %}
-
- <div id="element_add_box" style="display: none;">
-
- <a href="#" id="element_add_close_link" class="button">
- << {{ 'home.add_element_box.close'|trans({}, 'navigationui') }}
- </a>
-
- <form novalidate name="{{ add_form_name }}" action="{{ path('element_add') }}" method="post" {{ form_enctype(add_form) }}>
-
- {% include "MuzichCoreBundle:Element:form.add.html.twig" with {
- 'form' : add_form,
- 'form_name' : add_form_name
- } %}
-
- <input type="submit" class="button" />
- <img class="tag_loader" style="display: none;" src="{{ asset('/bundles/muzichcore/img/ajax-loader.gif') }}" alt="loading" />
- </form>
- </div>
-
- <a href="#" id="element_add_link" class="button">
- {{ 'home.add_element'|trans({}, 'navigationui') }} >>
- </a>
-
- <form name="{{ search_form_name }}" action="{{ path('search_elements') }}" method="post" {{ form_enctype(search_form) }}>
-
- {% include "MuzichCoreBundle:SearchElement:form.html.twig" with {
- 'form_name' : search_form_name,
- 'search_tags' : search_tags_id,
- 'display_specials_buttons': true
- } %}
-
- <input class="main button" type="submit" value="{{ 'filter.submit'|trans({}, 'userui') }}"/>
- </form>
-
- {% include "MuzichCoreBundle:SearchElement:default.html.twig" with {'noelements_filter' : true }%}
-
- <div class="elements_loader_div">
- <img class="elements_more_loader" style="display: none;" src="{{ asset('/bundles/muzichcore/img/ajax-loader.gif') }}" alt="loading" />
- </div>
-
- {% if more_count is defined %}
- {% if elements|length %}
- <span class="elements_more">
- <a href="{{ path('search_elements') }}" class="elements_more button">
- {{ 'more'|trans({}, 'userui') }}
- </a>
- </span>
- {% endif %}
- {% endif %}
-
- {% endblock %}
|