{% extends 'base.html' %} {% load custom_filters %} {% block content %}
Back to All Issues
{% if issue.cover_image %} {{ issue.name }} cover {% else %}
No Cover Image
{% endif %}
# {{ issue.issue_number }}

{{ issue.name }}

{% if issue.publication_date %}
Published {{ issue.publication_date|date:"F Y" }}
{% endif %} {% if issue.description %}
{{ issue.description|safe }}
{% endif %}
{{ issue.issue_items.count }} Article{{ issue.issue_items.count|pluralize }} {% if featured_blogs %} {{ featured_blogs|length }} Featured {% endif %}
{% if featured_blogs %}

Featured Articles

{% for blog in featured_blogs %}

{{ blog.title }}

{% if blog.content %}

{{ blog.content|striptags|truncatechars:110|safe }}

{% endif %}
{% if not forloop.last %}
{% endif %} {% endfor %}
{% endif %} {% if regular_blogs %}
{% with articles=regular_blogs|filter_by_category:"Articles" %} {% if articles %}

Articles

{% for blog in articles %} {% include "cards/issue_blog_card.html" %} {% if not forloop.last %}
{% endif %} {% endfor %}
{% endif %} {% endwith %} {% with opinions=regular_blogs|filter_by_category:"Opinions" %} {% if opinions %}

Opinions

{% for blog in opinions %} {% include "cards/issue_blog_card.html" %} {% if not forloop.last %}
{% endif %} {% endfor %}
{% endif %} {% endwith %} {% with case_briefs=regular_blogs|filter_by_category:"Case Briefs" %} {% if case_briefs %}

Case Briefs

{% for blog in case_briefs %} {% include "cards/issue_blog_card.html" %} {% if not forloop.last %}
{% endif %} {% endfor %}
{% endif %} {% endwith %} {% with know_the_law=regular_blogs|filter_by_category:"Know The Law" %} {% if know_the_law %}

Know The Law

{% for blog in know_the_law %} {% include "cards/issue_blog_card.html" %} {% if not forloop.last %}
{% endif %} {% endfor %}
{% endif %} {% endwith %} {% with book_reviews=regular_blogs|filter_by_category:"Book Reviews" %} {% if book_reviews %}

Book Reviews

{% for blog in book_reviews %} {% include "cards/issue_blog_card.html" %} {% if not forloop.last %}
{% endif %} {% endfor %}
{% endif %} {% endwith %}
{% endif %} {% if not featured_blogs and not regular_blogs %}

No articles found in this issue.

{% endif %} {% if related_issues %}

Other Issues

{% endif %}
{% endblock %}