{% extends 'base.html' %} {% block body %} {% if not searchPage %} {% include('show-view-edit.html') %} {% endif %} {% include('filter-order-sort.html') %}
{% set count = itemsArr|length %} {% if count == 0 and searchType != '' %} {{ "Sorry. I couldn't find anything :("|trans|msg('ko', false) }} {% elseif count == 0 and searchType == '' and not App.Session.get('is_anon') and not App.Request.query.get('offset') %} {{ "Welcome to eLabFTW. Use the 'Create new' button to get started!"|trans|msg('ok', false) }} {% else %} {% if pinnedArr and not searchPage %}
{% set isPinned = true %} {% for item in pinnedArr|slice(0, DisplayParams.limit) %} {% include('show-item.html') %} {% endfor %} {% set isPinned = false %}

{% endif %}

{{ 'Expand all'|trans }} - {{ 'Select all'|trans }}

{% for item in itemsArr|slice(0, DisplayParams.limit) %} {% include('show-item.html') %} {% endfor %}
{% if DisplayParams.offset != 0 %} {% endif %} {% if DisplayParams.limit < itemsArr|length %} {% endif %}
{% endif %}
{% endblock body %}