{% extends "admin/core/base.html" %} {% block title %}Orphaned {{ request.repository.object_name_plural }}{% endblock %} {% block title-section %}Orphaned Manager{% endblock %} {% block title-sub %}Displays a list of orphaned {{ request.repository.object_name_plural }} and allows you to review them.{% endblock %} {% load files %} {% block breadcrumbs %}
  • Press Manager
  • Preprint Manager
  • Orphaned {{ request.repository.object_name_plural }}
  • {% endblock %} {% block body %}
    {% for preprint in orphaned_preprints %} {% endfor %}
    Title Date Submitted Date Rejected First Author
    {{ preprint.title|safe }} {{ preprint.date_submitted }} {{ preprint.date_declined }} {{ preprint.authors.0.full_name }}
    {% endblock %} {% block js %} {% include "elements/datatables.html" with target="#rejected_preprints" page_length=25 sort=1 order='desc' %} {% endblock %}