{% extends 'base.html' %} {% block image %}{{ issue.image.url }}{% endblock %} {% block title %}{{ issue.title }} (#{{ issue.number }}){% endblock %} {% block description %}The {{ issue.date|date:"F Y" }} issue of Notes From Below{% endblock %} {% block date %}{{ issue.date|date:"Y-m-d" }}{% endblock %} {% block content %}

{% if not issue.published %}
Not published

This issue hasn't yet been published, so it won't be linked anywhere on the website.

All the articles associated with this issue (whether they've been published or not) are listed below.

{% endif %} {% if request.user.is_staff %} {% endif %}


{{ issue.date|date:"F Y"}}

{% for article in issue.get_ordered_articles %}
{% include 'article_thumb.html' with article=article only %}
{% endfor %}
{% endblock %}