{% extends "bootstrap/base.html" %} {% import "bootstrap/fixes.html" as fixes %} {% block title %} Libreant | {%trans%}Recents{%endtrans%} {% endblock %} {% block styles %} {{super()}} {% endblock %} {% block navbar %} {% import 'navbar.html' as navbar %} {{ navbar.navbar(search=True) }} {% endblock %} {% block content %}

{%trans%}Recently added items{%endtrans%}

{% if not items %}
{% else %}
{% for b in items %}
  • {{ b['fields']['_timestamp'] | timepassedformat }}
  • {{ b['_source']['_language'] }}
  • {% if 'actors' in b['_source'] %}
  • {{ b['_source']['actors'] | join(',')}}
  • {% endif %} {% if '_files' in b['_source'] %}
  • {{ b['_source']['_files'] | length }}
  • {% endif %}
{% endfor %}
{% endif %}
{% endblock content %} {% block scripts %} {{super()}} {% endblock scripts %}