{% extends "dashboard.html" %} {% block content %}

Loading jobs...

{% for job, job_data in jobs.items() %} {% endfor %}
Select All Name Plugin Interval Reload Last run Actions
{{ job }} {{ job_data["plugin_id"] }}
 {{ job_data["every"] }}
{% if job_data['history'] %} {% else %} No history {% endif %}
{% if job_data['history'] %}
  • Start date
  • End date
  • Success
{% for history in job_data['history'] %}
  • {{ history['start_date'] }}
  • {{ history['end_date'] }}
{% endfor %}
{% endif %}
{% endblock %}