{% extends "webpage/base.html" %} {% load static %} {% load django_tables2 %} {% block title %} {{ object }} {% endblock %} {% block scriptHeader %} {{ block.super }} {% if tei %} {% endif %} {% if iiif %} {% endif %} {% endblock scriptHeader %} {% block content %}
{% if object.get_prev_url %}

{% endif %}

{% if object.get_listview_url %} {{ entity_type }}s {% else %} {{ entity_type }}s {% endif %} {{ object }} {% if user.is_authenticated %} {% if object.get_edit_url %} {% endif %} {% if object.get_delete_url %} | {% endif %} {% endif %}

{% if object.get_next_url %}

{% endif %}

General Info {% if entity_type != 'event' %}| TEI{% endif %}

{% block info-table %} {% if object.start_date or object.end_date %} {% endif %} {% if object.lat %} {% endif %}
Titel {{ object.name }}
Labels {% for x in no_merge_labels %}
  • {{ x.label_type }}: {{ x.label }}
  • {% endfor %}
    ID {{ object.id }}
    Type {{ object.kind}}
    Date {% if object.start_date_written %} {{ object.start_date_written }} {% endif %} {% if object.end_date %} - {{ object.end_date_written }} {% endif %}
    Lat/Lng {{ object.lat }} / {{ object.lng }}
    {% endblock info-table %} {% block info-metadata %} {% if object.notes %} {% endif %} {% if object.references %} {% endif %}
    Collection(s) {% for x in object.collection.all %}
  • {{ x }}
  • {% endfor %}
    Uri(s) {% for x in object.uri_set.all %} {{ x }}
    {% endfor %}
    Notes {{ object.notes }}
    References {{ object.references }}
    {% endblock info-metadata %} {% block left-pane-additional %} {% endblock left-pane-additional %}

    Relations

    {% block relations %} {% for obj in right_card %} {% if obj.1.data|length > 0 %}

    {{ obj.0 }}

    {% render_table obj.1 %}
    {% endif %} {% endfor %} {% endblock relations %}

    Texts

    {% if object.text.all %}
    Texts {% for x in object.text.all %}
    {% if x.kind.name in tei %}

    TEI

    {% else %}

    {{ x.kind }}

    {% endif %}
    {% if x.kind.name in tei %}
    {{ x.text }}
    {% else %}
    {{ x.text }}
    {% endif %}
    {% endfor %}
    {% else %}
    No text provided for this {{entity}}
    {% endif %} {% if iiif %}
    {% endif %}
    {% endblock content %} {% block scripts %} {{block.super}} {% if tei %} {% endif %} {% if iiif %} {% endif %} {% endblock scripts %}