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

Cron Run administration page

{{ run.get('_id') }}

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

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

{% for channel_run in run.get('channel_runs') %}

Run ID {{ channel_run.get('_id') }}

Channel ID {{ channel_run.get('id') }} | Time {{ channel_run.get('time') }} | Exit code {{ channel_run.get('exit_code') }}

{% endfor %} {% endblock %}