{% extends "base.html" %} {% load i18n %} {% block content %}
{% trans "ID" %} | {{ worker.id }} | |
---|---|---|
{% trans "Name" %} | {{ worker.name }} | |
{% trans "Arches" %} | {{ worker.get_arches_display }} | |
{% trans "Load" %} | {{ worker.current_load }} / {{ worker.max_load }} | |
{% trans "Tasks" %} | {{ worker.task_count }} / {{ worker.max_tasks }} | {{ worker.task_count }} / {{ worker.max_tasks }} |
{% trans "Enabled" %} | {% if worker.enabled %}YES{% else %}NO{% endif %} | |
{% trans "Ready" %} | {% if worker.ready %}YES{% else %}NO{% endif %} | |
{% trans "Channels" %} | {{ worker.get_channels_display }} |