{% extends 'scipost/_personal_page_base.html' %}
{% block pagetitle %}: Manage PublicationUpdate metadata{% endblock pagetitle %}
{% load bootstrap %}
{% load static %}
{% load journals_extras %}
{% block breadcrumb_items %}
{{block.super}}
Manage PublicationUpdate metadata
{% endblock %}
{% block content %}
Manage PublicationUpdate metadata
{% include "journals/_manage_link_list.html" with active="publicationupdate" %}
Publication Updates
Update |
Latest successful Crossref deposit |
Deposit needs updating? |
{% for update in updates %}
{{ update }} |
{{ update|latest_successful_crossref_generic_deposit }} |
{{ update.doideposit_needs_updating|yesno:'Yes,No,-' }} |
Update {{ update }}
Actions
|
Crossref Deposits
Timestamp |
batch id |
deposition date |
Successful? |
actions |
{% for deposit in update.genericdoideposit.all %}
{{ deposit.timestamp }} |
{{ deposit.doi_batch_id }} |
{% if deposit.deposition_date %}{{ deposit.deposition_date }}{% else %}Not deposited{% endif %} |
{{ deposit.deposit_successful|yesno:'Yes,No,-' }} |
Mark deposit as
|
{% empty %}
No Deposits found for this Publication Update |
{% endfor %}
|
{% endfor %}
{% include '_pagination.html' with page_obj=page_obj %}
{% endblock content %}