{% extends 'base.html' %} {% load crispy_forms_tags %} {% load ui_extras %} {% load static %} {% load humanize %} {% block title %} {{ collection }} {% endblock %} {% block content_header %}
{{ collection.get_harvest_type_display }}
{% if collection.is_on %}Collection is active. Turn off to edit.
{% endif %} {% if not collection.is_active %}Collection is deactivated. Activate to turn on harvesting.
{% endif %}Description: {{ collection.description }}
{% endif %} {% if collection.link %}Public link: {{ collection.link }}
See the public version for citing this collection.
{% endif %}Data collected: {{ collection.warcs_count|intcomma }} file{{ collection.warcs_count|pluralize }} ({{ collection.warcs_bytes|filesizeformat }})
{% if collection.stats %}Stats:
Credential: {% if has_perm %}{% endif %}{{ collection.credential.name }}{% if has_perm %}{% endif %}{% if not collection.credential.is_active %} (Deleted){% endif %}
{{ collection.harvest_options|json }} {% if collection.schedule_minutes %}Schedule: {{ collection.get_schedule_minutes_display }}
{% endif %}Id: {{ collection.collection_id }}
Created: {{ collection.date_added|date }}
End date: {{ collection.end_date|date }}
Sharing: {{ collection.get_visibility_display }}
Seeds changes will go into effect with next scheduled harvest.
{% endif %}Type | Requested | Updated/Completed | Status | Stats | Messages |
---|---|---|---|---|---|
{{ harvest.get_harvest_type_display }} | {{ harvest.date_requested }} | {% if harvest.status == "completed success" or harvest.status == "completed failure" %} {{ harvest.date_ended}} {% else %} {{ harvest.date_updated|naturaltime }} {% endif %} | {{ harvest.get_status_display }} | {% join_stats harvest.stats harvest.status as joined_stats %}{{ joined_stats }} | {% if harvest.message_count %}{{ harvest.message_count|intcomma }} message{{harvest.message_count|pluralize}}{% endif %} |