{% extends '_layout.html'|pjax:request %} {% load i18n %} {% block page_title %}{{ block.super }} | {{ item.name }}{% endblock %} {% block main_content %}
{% if USER_IS_STAFF and USER_CONFIG.show_admin_links %}
{% trans "Edit in admin" %}

{% endif %}
{% if item.last_volume_cover %}
{% endif %}
    {% if item.for_review and user.is_staff %} {% trans "Requires review" %} {% endif %}
  • {% trans "Status" %} {% if item.finished %} {% trans "Finished" %} {% else %} {% trans "Open" %} {% endif %}
{% if item.art.count %}

{% trans "Art" %}

    {% for person in item.art.all %}
  • {{ person.name }}
  • {% endfor %}
{% endif %} {% if item.story.count %}

{% trans "Story" %}

    {% for person in item.story.all %}
  • {{ person.name }}
  • {% endfor %}
{% endif %}

{% trans "Publishers" %}

{{ item.name }}

{% if item.summary %}
{{ item.summary|linebreaks }}
{% endif %}
{% for volume in item.volumes_by_publisher.all %}
{% include "manga/series/includes/volume.html" with volume=volume user=user %}
{% if forloop.counter|divisibleby:4 %}
{% endif %} {% endfor %}
{% endblock %}