{% extends 'samba_home/base/page.html' %} {% load wagtailcore_tags %} {% load django_tables2 %} {% load crispy_forms_tags %} {% load linebreaks_to_paragraphs %} {% block content %} {% include_block page.intro %} {% if filter %}
{% for field in filter.form %}
{{ field|as_crispy_field }}
{% endfor %}
{% endif %} {% for cur_poster in page_obj %}

{{ cur_poster.poster_number }}) {{ cur_poster.title }}

{{ cur_poster.html_indexed_authors }}

{{ cur_poster.html_indexed_affiliations }}

{{ cur_poster.content|linebreaks_to_p }}

{% endfor %} {% block pagination %} {% if page_obj and paginator.num_pages > 1 %} {% endif %} {% endblock pagination %} {% endblock %}