Add cluster API for worker management and status reporting

This commit is contained in:
Eduardo Silva
2025-12-30 11:30:55 -03:00
parent 4a6487835b
commit 92e3049a8e
10 changed files with 274 additions and 5 deletions

View File

@@ -16,7 +16,7 @@ def cluster_main(request):
page_title = _('Cluster')
workers = Worker.objects.all().order_by('name')
context = {'page_title': page_title, 'workers': workers}
context = {'page_title': page_title, 'workers': workers, 'worker_version': 10}
return render(request, 'cluster/workers_list.html', context)