{% extends 'material_base.html' %} {% block title %}Runs administration page{% endblock %} {% block description %}Cron logs administration page of the AYTA system{% endblock %} {% block content %}

Runs administration page

Cron runs list
{% for run in runs %}
{{ run.get('_id') }}

Amount of channel logs {{ run.get('channel_runs')|length }}

Started: {{ run.get('time') }}

Finished: {{ run.get('finish_time', 'Probably still running') }}

{% endfor %}
{% endblock %}