actually create a job for scan now, and let the job manager do the work and send back output via new PA_JobManager_FE_Message table

This commit is contained in:
2021-01-17 10:50:43 +11:00
parent 2a33b6e2f4
commit c5d8811671
5 changed files with 69 additions and 30 deletions

View File

@@ -98,9 +98,16 @@
{% if GetMessage()|length %}
<div class="row alert alert-{{GetAlert()}}">
{{ GetMessage()|safe}}
{{ ClearStatus() }}
{{ ClearStatus() }}
</div>
{% endif %}
{% if GetJM_Message() != None %}
{% set msg=GetJM_Message() %}
<div class="row alert alert-{{msg.alert}}">
<a href="{{url_for('joblog', id=msg.job_id)}}">Job #{{msg.job_id}}</a>: {{msg.message|safe}}
</div>
{% set dont_print=ClearJM_Message(msg.id) %}
{% endif %}
{% endif %}
{% block main_content %}