{% extends "AuthorsBundle::layout.html.twig" %} {% block page_title %}{{ 'Authors'|trans }}{% endblock %} {% block title %}

{{ 'Authors'|trans }}

{% endblock %} {% block main_content %} {% if not app.request.xmlHttpRequest %}

{% endif %} {% for author in authors %}

{{ author.name }}

{% endfor %} {% if not isLastPage %}
{{ 'Show more'|trans }}
{% endif %} {% if not app.request.xmlHttpRequest %}
{% endif %} {% endblock %} {% block js_document_ready %} {{ parent() }} setupUnlimitedScroll(); parseUrlParams(); $('#authors-country').change(function() { window.urlParams['country'] = $(this).val(); window.location.href = window.location.pathname + '?' + $.param(window.urlParams); }); $('#authors-view').change(function() { window.urlParams['view'] = $(this).val(); window.location.href = window.location.pathname + '?' + $.param(window.urlParams); }); {% endblock %}