{% extends "base.html" %} {% block title %}Automations - Memorizz{% endblock %} {% block content %} {% if error %}
! {{ error }}
{% endif %}
Create Automation

Jobs

{{ jobs|length }} job{% if jobs|length != 1 %}s{% endif %}

{% if jobs %}
{% for job in jobs %} {% endfor %}
Name Agent Schedule Timezone Next Run Status Actions
{{ job.name }} {{ job.agent_id|truncate(18) }} {{ job.schedule_type }} {% if job.schedule_type == 'cron' and job.cron_expr %} {{ job.cron_expr }} {% elif job.schedule_type == 'interval' and job.interval_seconds %} {{ job.interval_seconds }}s {% endif %} {{ job.timezone }} {{ job.next_run_at }} {% if job.enabled %} enabled {% else %} paused {% endif %} View Edit
{% if job.enabled %}
{% else %}
{% endif %}
{% else %}
AUTO

No automations found.

Create one from this page or from an agent chat using the automation tools.

{% endif %}
{% endblock %}