{% extends "base.html" %} {% load i18n plmapp_tags highlight %} {# browse page #} {% block css %} {% endblock %} {% block leftcolumn %} {% endblock %} {% block content %}

{% trans "Type" %}


{% if plmobjects and not restricted %}
{% endif %}

{% trans "Results" %}

{% if sort == "name" %} {% trans "Sorted by name" %}. {% else %} {% trans "Recently added" %}. {% endif %} {% if plmobjects %} {% if state == "official" %} {% trans "Only official objects" %}. {% else %} {% if state == "published" %} {% trans "Only published objects" %}. {% else %} {% trans "All objects"%}. {% endif %} {% endif %} {% endif %} {% trans "Results" %} {% blocktrans with objects.start_index as start and objects.end_index as end and objects.paginator.count as total %} ({{start}} - {{end}} on {{total}}) {% endblocktrans %}

{% with restricted|yesno:"public/," as suffix_url %} {% for object in objects.object_list %} {% if object.is_part %} {% include "parts/identity_card.html" %} {% else %} {% if object.is_document %} {% include "documents/identity_card.html" %} {% else %} {% if object.username %} {% include "users/identity_card.html" %} {% else %} {% include "groups/identity_card.html" %} {% endif %} {% endif %} {% endif %} {% endfor %} {% endwith %}
{% include "snippets/pagination.html" %}
{% endblock %}