{% extends "dashboard/base.html" %} {% load staticfiles %} {% block body %}
Schedule
{% if tasks %}
    {% for task in tasks %}
  • {% if task.active_lock %}
    {{task.active_lock.data}}
    {% else %}
     
    {% endif %}
    {{task.schedule}}
    {% if task.enabled %} {% else %} {% endif %}
    {% if task.last_run %} Last run: {{task.last_run.timestamp}} {% endif %}
  • {% endfor %}
{% else %} No tasks to show. {% endif %}
Selected tasks:
{% endblock %}