{% extends "admin/core/base.html" %} {% load i18n %} {% load foundation %} {% block title %}{{ preprint.title|striptags }}{% endblock %} {% block title-section %}{{ request.repository.object_name }} #{{ preprint.pk }} - {{ preprint.title|safe }}{% endblock %} {% block title-sub %}You can view the metadata of your article, its recent views and downloads and upload new versions of the preprint.{% endblock %} {% block breadcrumbs %}
  • {{ request.repository.object_name }} Dashboard
  • {{ preprint.title|safe }}
  • {% endblock %} {% block body %}

    Metadata

    {% if preprint.is_published %} View Live Article{% endif %}
    {% for field_answer in preprint.additional_field_answers %} {% endfor %}
    Title
    {{ preprint.title }}
    Keywords
    {% for keyword in preprint.keywords.all %}{{ keyword.word }}{% if not forloop.last %}, {% endif %}{% endfor %}
    Abstract
    {{ preprint.abstract }}
    Preprint DOI Published DOI
    {% if preprint.preprint_doi %}{{ preprint.preprint_doi }}{% else %}pending{% endif %} {% if preprint.doi %}{{ preprint.doi }}{% else %}No Published DOI{% endif %}
    Subjects
    {% include "common/repository/subject_display.html" %}
    License
    {{ preprint.license }}
    Comments to the Editor
    {{ preprint.comments_editor }}
    {{ field_answer.field.name }}
    {{ field_answer.answer }}

    Authors

    {% for author in preprint.preprintauthor_set.all %} {% endfor %}
    {% trans 'Name' %} {% trans 'Email' %} {% trans 'Affiliation' %}
    {{ author.account.full_name }} {{ author.account.email }} {{ author.display_affiliation }}

    Dates

    {% if not preprint.date_declined %} {% else %} {% endif %} {% for version in preprint.preprintversion_set.all %} {% endfor %}
    Submitted {{ preprint.date_submitted }}
    Decision ({% if preprint.date_accepted %}Accepted{% elif preprint.date_declined %}Rejected{% else %}Under Consideration{% endif %}) {% if preprint.date_accepted %} {{ preprint.date_accepted }}{% elif preprint.date_declined %} {{ preprint.date_declined }}{% else %}N/a{% endif %}
    Date Published {% if preprint.date_published %}{{ preprint.date_published }}{% else %}No date set{% endif %}
    Rejection Reason
    {{ preprint.preprint_decline_note }}
    Version #{{ version.version }} () {{ version.date_time }}

    Metrics

    Views track how often the {{ request.repository.object_name }} page has been visited, while Downloads record the number of times a {{ request.repository.object_name }}'s file has been downloaded.

    Metric Type Total
    Views {{ views }}
    Downloads {{ downloads }}

    Comments

    Files

    {% for file in preprint.preprintfile_set.all %} {% endfor %}
    Filename Type Size Uploaded Download
    {{ file.original_filename }} {{ file.mime_type }} {{ file.size|filesizeformat }} {{ file.uploaded|date:"Y-m-d G:i" }}  

    Pending Updates

    Upload New Version
    {% for update in pending_updates %} {% empty %} {% endfor %}
    ID Type Date Submitted Filename Status
    {{ update.pk }} {{ update.get_update_type_display }} {{ update.date_submitted }} {{ update.file.original_filename|truncatechars:40 }} {{ update.status }}
    You have no pending updates.

    Supplementary Files

    Manage Supplementary Files
      {% for link in preprint.supplementaryfiles %}
    • {{ link.label }}
    • {% empty %}
    • No Supplementary File
    • {% endfor %}
    {% if preprint.date_accepted %}

    Submit to Journal

    {% if preprint.preprint_journal_article %}

    This preprint has already been submitted to {{ preprint.preprint_journal_article.journal.name }} with ID {{ preprint.preprint_journal_article.pk }}.

    {% elif preprint_journals %}

    Select a journal to submit your article to.

    {% csrf_token %}
    {% else %}

    No journals currently accept preprints for full submission.

    {% endif %}
    {% endif %}

     Update {{ request.repository.object_name }}

    {% if error %} {% endif %}
    {% csrf_token %}

    There are three types of update you can select from. Click on of the links to get started.

    1. Correction - This is a small update. You can update the metadata.
    2. New Version - A large update. You can update the medadata.
    3. Metadata Correction - You can only make changes to the metadata.
    {% endblock %} {% block js %} {% if modal %} {% include "admin/elements/open_modal.html" with target=modal %} {% endif %} {% endblock %}