{% load static %} {% load i18n %} {% load dates %}
{% if not journal_settings.article.disable_article_thumbnails %}
{% if article.thumbnail_image_file %} {{ article.title|striptags|escape }} {% elif request.journal.thumbnail_image %} {% else %} {{ article.title|striptags|escape }} {% endif %}
{% endif %}
{% if article.is_remote %} {% if level == "issuepage" %}

{{ article.title|safe }} {% include "elements/icons/link_external.html" %}

{% elif level == "deep" %}

{{ article.title|safe }} {% include "elements/icons/link_external.html" %}

{% else %}

{{ article.title|safe }} {% include "elements/icons/link_external.html" %}

{% endif %}
{% else %} {% if level == "issuepage" %}

{{ article.title|safe }}

{% elif level == "deep" %}

{{ article.title|safe }}

{% else %}

{{ article.title|safe }}

{% endif %}
{% endif %}

{% for author in article.frozen_authors.all %}{% if forloop.last %} {% if article.frozen_authors.all|length > 1 %} {% trans "and" %} {% endif %}{% endif %}{{ author.full_name }}{% if not forloop.last %}{% if not forloop.counter == article.frozen_authors.all|length|add:-1 %}, {% endif %}{% endif %}{% endfor %}

{% if article.issue %} {{ article.issue_title }} {% endif %} {% if article.issues.count > 1 %}

{% trans 'Also a part of:'%}

{% for other in article.issues.all %} {% if other != article.issue %}

{{other.issue_type.pretty_name}}: {{ other.display_title }}

{% endif %} {% endfor %} {% endif %}