{% extends "base.html" %} {% block title %}Workers Status{% endblock %} {% block page_title %}Workers Status{% endblock %} {% block content %}
Active workers: {{ workers|length }}
{% if workers %} {% for worker in workers %} {% endfor %}
ID Name Last Check-in Last Activity
{{ worker.id }} {{ worker.name }} {{ worker.last_check_in_time.strftime('%Y-%m-%d %H:%M:%S') }} {{ worker.last_activity_time.strftime('%Y-%m-%d %H:%M:%S') }}
{% else %}

No workers are currently active.

{% endif %} {% endblock %}