{% extends "base.html" %} {% block title %}minibot scheduled{% endblock %} {% block content %}

Scheduled prompts

{{ jobs | length }} {{ "of up to " ~ limit ~ " " if jobs | length == limit }} {{ "job" if jobs | length == 1 else "jobs" }} · owner {{ owner_id }} · {% if show_all %}active only{% else %}show all{% endif %}

{% if jobs %}

Cancel the prompt scheduled for ?

{% else %}

{{ "nothing scheduled" if show_all else "nothing scheduled right now" }}

{% endif %}
{% endblock %} {% block scripts %} {% if jobs %} {% endif %} {% endblock %}