{% extends "p4l/base.html" %} {% load static %} {% load i18n %} {% load p4lstringfilters %} {% block page_title %}{% trans 'Record List' %} - {% trans 'Page' %} {{ page.number }}{% endblock %} {% block js_page %} {% endblock %} {% block content %}

{% trans 'Record List' %}

- {% trans 'New record' %}
{% for result in page.object_list %} {% empty %} {% endfor %}
{% trans 'identifier' %}{% trans 'titles' %}{% trans 'dates' %}{% trans 'actions' %}
{{ result.get_stored_fields.identifier }}
    {% for t in result.get_stored_fields.titles_src %}
  • {{ t }}
  • {% endfor %}
{{ result.get_stored_fields.years|join:", "}}
{% trans 'No record' %}
{% if is_paginated %} {% endif %} {% endblock %}