From 11aaf9fc7d3d6d7cb97546732eb4db6eac45f513 Mon Sep 17 00:00:00 2001 From: Martijn Vermaat <martijn@vermaat.name> Date: Mon, 9 Nov 2015 11:33:33 +0100 Subject: [PATCH] Clarify batch job progress page --- mutalyzer/website/templates/batch-job-progress.html | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/mutalyzer/website/templates/batch-job-progress.html b/mutalyzer/website/templates/batch-job-progress.html index 77511f9d..1044ad1a 100644 --- a/mutalyzer/website/templates/batch-job-progress.html +++ b/mutalyzer/website/templates/batch-job-progress.html @@ -8,11 +8,14 @@ {% if result_id %} <div id="if_items_left"{% if not items_left %} style="display:none"{% endif %}> - <p>Your job is in progress with <span id="items_left">{{ items_left }}</span> items remaining.</p> - <p>You will receive an email when the job is finished.</p> + <p>Your job is in progress with <strong><span id="items_left">{{ items_left }}</span> items remaining</strong>.</p> <p>Please note that your jobs are processed in order of submission, meaning you will not see any progress on this job until all your earlier jobs have finished.</p> + <p>If you specified your email address, you will receive an email when the + job is finished. You can also bookmark <a href="{{ + url_for('.batch_job_progress', result_id=result_id) }}">this page</a> to + download your results later.</p> </div> <div id="ifnot_items_left"{% if items_left %} style="display:none"{% endif %}> <p>Your job is finished, please download the results: -- GitLab