{% extends "aristotle_mdr/base.html" %} {% load aristotle_tags i18n slot_tags util_tags %} {% block title %}Slots - Metadata Items related to '{{slot_type.slot_name}}'{% endblock %} {% block content %} {% block object_list %}

Below is a list of all visible metadata objects with values for the Slot {{ slot_name }}. {% with item_type=slot_type.model_class %} {% if item_type %} This slot is only available on items of type [[{{ item_type }}]]. {% endif %} {% endwith %} {% if slot_type.help_text %}

{{ slot_type.help_text }}

{% endif %} {% if value %}

This list is restricted to just metadata items where this slot has a value of {{value}}.

{% endif %}
or Show all items

{% for obj in object_list.all|order_by:'name' %} {% empty %} {% endfor %}
Metadata item Values
{% include "aristotle_mdr/helpers/inlineDetails.html" with item=obj %}
    {% for slot in obj|slots_by_type:slot_name %}
  • {{slot.value}}
  • {% endfor %}
{% trans 'No metadata items have this slot type' %} {% if value %} {% trans 'with the specified value' %} {% endif %} .
{% endblock %} {% endblock %}