{% extends "admin/core/base.html" %} {% block title %}{{ preprint.title|striptags }}{% endblock %} {% block title-section %}Preprint Comments{% endblock %} {% block title-sub %}Management interface for {{ article.safe_title }} comments{% endblock %} {% block breadcrumbs %}
  • {{ request.repository.object_name }} Dashboard
  • {{ preprint.title }}
  • Comments
  • {% endblock %} {% block body %}

    New Comments

      {% for comment in new_comments %}
    • Comment #{{ comment.pk }} by {{ comment.author.full_name }}

      Comment made at {{ comment.date_time }}

      {{ comment.body|linebreaksbr }}

      {% csrf_token %}
      {% if request.user in request.repository.managers.all %} {% endif %}
    • {% endfor %}

    Old Comments

      {% for comment in old_comments %}
    • Comment #{{ comment.pk }} by {{ comment.author.full_name }}

      Comment made at {{ comment.date_time }}

      {{ comment.body|linebreaksbr }}

      {% csrf_token %}
      View Comment {% if request.user in request.repository.managers.all %} {% endif %}
    • {% endfor %}
    {% endblock %} {% block js %} {% include "admin/elements/post_check.html" %} {% endblock %}