Improve worker details display with specific worker information

- Show actual worker name when available in job.result.worker
- Display 'Assigned to cluster' for distributed jobs
- Keep 'Local processing' for local jobs
- Better distinction between local and cluster processing
parent f954199e
......@@ -449,7 +449,11 @@
<div class="worker-details" style="font-size: 0.8rem; color: #6b7280;">
{% if job.status == 'processing' %}
{% if job.job_id %}
Assigned to worker
{% if job.result and job.result.get('worker') %}
Worker: {{ job.result.worker }}
{% else %}
Assigned to cluster
{% endif %}
{% else %}
Local processing
{% endif %}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment