{% extends 'base.html' %} {% load humanize %} {% block title %} {{ collection_set.name }} {% endblock %} {% block content_header %}
{% endblock %} {% block content %}

Id: {{ harvest.harvest_id }}

Requested: {{ harvest.date_requested }}

{% if harvest.date_started %}

Started: {{ harvest.date_started }}

{% endif %} {% if harvest.date_ended %}

Ended: {{ harvest.date_ended }}

{% endif %}

Updated: {{ harvest.date_updated }}

Status: {{ harvest.get_status_display }}

{% if harvest.service %}

Performed by: {{ harvest.service }} on {{ harvest.host }} ({{ harvest.instance }})

{% endif %}

Harvest type: {{ harvest.harvest_type }}

{% if harvest.stats %}

Stats:

{% endif %} {% if harvest.infos %}

Informational messages:

{% endif %} {% if harvest.warnings %}

Warning messages:

{% endif %} {% if harvest.errors %}

Error messages:

{% endif %} {% if harvest.warcs_count %}

WARCs: {{ harvest.warcs_count }} file{{ harvest.warcs_count|pluralize }} ({{ harvest.warcs_bytes|filesizeformat }})

{% endif %}
{% if harvest.parent_harvest %}

This harvest requested by: {{ harvest.parent_harvest.get_harvest_type_display }} harvest ({{ harvest.parent_harvest.date_requested }})

{% endif %} {% if harvest.child_harvests.count %}

This harvest requested:

{% endif %}

{% if can_void %}
{% csrf_token %}

Voiding this harvest will allow the next harvest to be requested even though this one has not been successfully completed. It will not cancel this harvest if it is still queued to be processed or is already running. You may want to void this harvest if you believe that there is a problem with it and would like the next harvest to be able to proceed.

{% endif %} {% endblock %}