{% extends "admin/core/base.html" %} {% load foundation %} {% load bool_fa %} {% block title %}Invited Review Comments{% endblock %} {% block title-section %}Invited Reviews Comments{% endblock %} {% block title-sub %}Lists reviewers invited to comment on a preprint.{% endblock %} {% block breadcrumbs %}
  • Press Manager
  • {{ request.repository.object_name_plural }} Manager
  • {{ preprint.title|safe }}
  • Invited Review Comments
  • {% endblock %} {% block body %}

    Invited Reviewers

    Add New Invite

    Invited reviews that are active or complete are listed below.

    {% for review in active_reviews %} {% include "admin/elements/repository/review_box.html" with review=review %} {% empty %}

    There are no active reviews. Invite someone to review.

    {% endfor %}

    Inactive Invited Reviewers

    Invited reviews that were sent but declined or withdrawn are listed below.

    {% for review in inactive_reviews %} {% include "admin/elements/repository/review_box.html" with review=review %} {% empty %}

    There are no active reviews. Invite someone to review.

    {% endfor %}
    {% endblock %}