{% extends "base.html" %} {% block content %} {% for task in tasks %} {% endfor %}
Task Queue LastTime Actions
{{ task.name }} {{ task.queue }} {% if task.last_time %} {{ task.last_time }} {% else %} Never Run {% endif %} {% include "widgets/task_actions.html" %}

CronTasks

{% for task in cron_tasks %} {% endfor %}
Task Queue Crontab LastTime NextTime Actions
{{ task.name }} {{ task.queue }} {{ task.cron }} {% if task.last_time %} {{ task.last_time }} {% else %} Never Run {% endif %} {{ task.next_time }} {% include "widgets/task_actions.html" %}
{% endblock %} {% block body_end %} {% endblock %}