{% extends 'journals/base.html' %} {% load scipost_extras %} {% block breadcrumb_items %} {{block.super}} {{ journal.discipline|get_discipline_display }} Journals {{ journal }} Home {% endblock %} {% block content %} {{ block.super }}
    {% for publication in latest_publications %}
  • {% include 'journals/_publication_card_content.html' with publication=publication %}
  • {% empty %}
  • No match found for your search query.
  • {% endfor %} See all Publications in {{ journal }}
    {% for submission in accepted_submissions %}
  • {% include 'partials/submissions/submission_card_content.html' with submission=submission %}
  • {% empty %}
  • All recently accepted Submissions to SciPost Physics have been published.

  • {% endfor %}
{% if journal.series_set.all|length > 0 %}

Series contained in this Journal

    {% for series in journal.series_set.all %}
  • {{ series }}
  • {% endfor %}
{% endif %}
    {% for publication in most_cited %}
  • {% include 'journals/_publication_card_content.html' with publication=publication include_citation_rate=1 %}
  • {% empty %}
  • No match found for your search query.
  • {% endfor %}
{% if journal.has_issues %}
    {% for issue in journal.get_issues %}
  • {{ issue }} {% if issue.proceedings %} {% include 'partials/proceedings/proceedings_li.html' with proceedings=issue.proceedings %} {% endif %}
  • {% empty %}
  • No Issues found, please check again later.
  • {% endfor %}
{% endif %}
{% endblock %}