2013-02-08 14:52:48 +01:00
|
|
|
{% extends "source/admin_base.html" %}
|
|
|
|
|
|
|
|
{% block primary_content_inner %}
|
|
|
|
<section class="module-content">
|
2015-06-10 13:14:20 +02:00
|
|
|
<h1>{{ _('Last Harvest Job') }}</h1>
|
2013-08-14 11:52:11 +02:00
|
|
|
{% if source.status and source.status.last_job %}
|
2013-02-25 14:11:02 +01:00
|
|
|
{% snippet "snippets/job_details.html", job=source.status.last_job %}
|
|
|
|
<div class="form-actions">
|
|
|
|
<a href="{{ h.url_for(controller='ckanext.harvest.controllers.view:ViewController', action='show_last_job', source=source.name) }}" class="btn pull-right">
|
|
|
|
<i class="icon-briefcase"></i>
|
|
|
|
{{ _('View full job report') }}
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
{% else %}
|
|
|
|
<p class="empty">{{ _('No jobs yet for this source') }}</p>
|
|
|
|
{% endif %}
|
2013-02-08 14:52:48 +01:00
|
|
|
</section>
|
|
|
|
{% endblock %}
|