{% extends 'base.html' %} {% load filters i18n %} {% block title %}{{block.super}} ยท {{ entity.label }}{% endblock %} {% block body_class %} header-main {% endblock %} {# ========== BODY ========== #} {% block body %} {% include 'partials/nav.html' %} {# --- ENTITY HEADER --- #}
{% if 0 == entity.type and is_elit %} {% translate "Electronic Literature" %}
    {% if instanceOf|length > 1 %} {% for object in instanceOf %} {% if object.identifier != 'Q173167' %}
  • {{ object.label }}
  • {% endif %} {% endfor %} {% endif %}
{% elif 0 == entity.type %} ({% translate "Entity" %}) {% else %} (Property) Listing all values {% endif %}

{{ entity.label }}

{# if its an item description here in big #} {% if 0 == entity.type %} {% if entity.description %}

{{ entity.description }}

{% else %}

{% translate "(this item does not have a description yet)" %}

{% endif %} {% endif %}
{% translate "Wikidata identifier:" %} {{entity.wb_identifier}} {% if entity.shallow %}

* {% translate "This is a shallow copy. Lookup more data on Wikidata." %}

{% endif %} {# if its a property description here in small #} {% if 1 == entity.type %} {% if entity.description %}

Wikidata description: {{ entity.description }}

{% else %}

(this item does not have a description yet)

{% endif %} {% endif %}
{# --- LISTING ALL THE CLAIMS --- #}
{% if 0 == entity.type %} {# CLAIM AND REVERSE CLAIMS #}
{% if top_grouped_claims|length > 0 %}

main metadata

{% include 'partials/claims.html' with grouped_claims=top_grouped_claims top=1 %} {% endif %} {% if grouped_claims|length > 0 %}

other connections

{% include 'partials/claims.html' with grouped_claims=grouped_claims %} {% endif %} {% if text_grouped_claims|length > 0 %}

text values

{% include 'partials/claims.html' with grouped_claims=text_grouped_claims %} {% endif %} {% if grouped_reverse_claims|length > 0 %}

what links here

{% include 'partials/claims.html' with grouped_claims=grouped_reverse_claims reverse=1 %} {% endif %}
{% if entity.urls|length > 0 %} {# IFRAME AND EXTERNAL URLS #}
{% endif %} {# list all value if property #} {% elif 1 == entity.type %} {% endif %}
{% endblock %}