{% 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 }} - {{ 'Clear selection'|trans }} - {{ 'Invert selection'|trans }}

{{ 'With selected:'|trans }}

{% if Entity.type == 'experiments' %} {% endif %} {% if (deletableXp and (Entity.type == 'experiments')) or Entity.type == 'items' %} {% endif %}
{% if App.Users.userData.display_mode == 'it' %}
{% for item in itemsArr|slice(0, DisplayParams.limit) %} {% include 'show-item.html' %} {% endfor %}
{% elseif App.Users.userData.display_mode == 'tb' %}
{% for item in itemsArr|slice(0, DisplayParams.limit) %} {% include 'show-item-table.html' %} {% endfor %}
{{ 'Date'|trans }} {{ 'Title'|trans }} {{ 'Next step'|trans }} {{ 'Category'|trans }} {{ 'Tags'|trans }} {{ 'Actions'|trans }} {{ 'Rating'|trans }} {{ 'Owner'|trans }}
{% endif %}
{% if DisplayParams.offset != 0 %} {% endif %} {% if DisplayParams.limit < itemsArr|length %} {% endif %}
{% endif %}
{% endblock body %}