{% extends "pages/wrapper.html" %} {% block title %}Tasks{% endblock %} {% block body %}
{% for item in tasks %} {% endfor %}
Name Worktime Status Duration Retries
{{ item.name }} {{ item.worktime_utc.strftime('%Y-%m-%d %H:%M').replace(' 00:00', '') }} {{ item.worktime_utc.tzname() }} {{ item.status }} {{ item.duration }} {{ item.retries }}
{% endblock %} {% block scripts %} {% for item in tasks %} {% endfor %} {% endblock %}