Skip to content
Snippets Groups Projects
Commit 11d349e8 authored by Nico Vermaas's avatar Nico Vermaas
Browse files

add remaining in ingest queue

parent 6c24047d
Branches
No related tags found
1 merge request!390add remaining in ingest queue
Pipeline #106730 passed
......@@ -375,6 +375,7 @@ def update_activity(task):
# check of any task of this activity already has LTA information. If so, copy to the activity level
if task.status in UPDATE_ARCHIVE_STATUSSES:
update_archive_info(task)
update_finished_fraction(task)
if task.status in ACTIVITY_RESET_STATUSSEN:
reset_activity(task)
......
......@@ -31,7 +31,7 @@
{% include 'taskdatabase/pagination.html' %}
</div>
</div>
<p class="footer"> Version 6 Feb 2025</p>
<p class="footer"> Version 7 Feb 2025</p>
</div>
{% include 'taskdatabase/refresh.html' %}
......
......@@ -37,6 +37,7 @@
<th>Status</th>
<th>Completion</th>
<th>Remaining</th>
<th>
SAS_ID (output) at LTA
</th>
......
......@@ -4,7 +4,7 @@
{% if task.status != "removed_invisible" %}
<div class="row">
<tr>
<td>{{ task.sas_id }}</td>
<td><a href="{% url 'activity-detail-view-api' task.activity.id%}" target="_blank">{{ task.sas_id }}</a></td>
<td>{{ task.project }}</td>
<td>
<a class="open-modal btn btn-primary btn-sm"
......@@ -27,6 +27,7 @@
<td>{{ task.purge_policy }}</td>
<td>{{ task.activity.ingestq_status }}</td>
<td>{{ task.activity.ingested_fraction|floatformat:"0" }}%</td>
<td>{{ task.activity.remaining|filesizeformat }}</td>
<td>
{% if task.activity.has_archived != None %}
<a href={{ task.activity.archive.path_to_lta }} target="_blank">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment