{% extends "base.html" %} {% block content %}
{% if scheduled_jobs %}
{% if allow_write %} {% endif %} {% for job in scheduled_jobs %} {% if allow_write %} {% endif %} {% endfor %}
Function Args Scheduled At RemainingActions
{{ job.function_name }} {{ job.args | string | truncate(60) }} {{ job.scheduled_at.strftime('%Y-%m-%d %H:%M:%S') }} {{ "%.0f" | format(job.remaining_seconds) }}s
{% include "pagination.html" %} {% else %}

No scheduled jobs.

{% endif %}
{% endblock %}