{% extends "pobsync_backend/base.html" %} {% block title %}Schedule | {{ host.host }}{% endblock %} {% block content %}

{% if schedule %}Edit Schedule{% else %}Create Schedule{% endif %}

Schedules use cron-style timing syntax, but they are evaluated by the pobsync scheduler service.

{% csrf_token %} {{ form.non_field_errors }} {% for field in form %}
{{ field.errors }} {{ field }} {% if field.help_text %}
{{ field.help_text }}
{% endif %}
{% endfor %}
Cancel
{% endblock %}