{% translate 'Add New Cron Job' %}
{% translate 'Create Cron Job' %}
{% translate "A cron job is a Linux command used for scheduling tasks. You can set a command or script to run at a specific time every day, week, etc." %}
{% translate "You need to have good knowledge of Linux commands to schedule a cron job. If you are not familiar with Linux, we recommend contacting your server support to add a cron job for you. " %}
{% if form.errors %}
{% for error in form.non_field_errors %}
{{ error|escape }}
{% endfor %}
{% for field in form %}
{% for error in field.errors %}
{{ error|escape }}
{% endfor %}
{% endfor %}
{% endif %}
{% if messages %}
{% for message in messages %}
{% if message.tags == "success" %}
{{ message }}
{% else %}
{{ message }}
{% endif %}
{% endfor %}
{% endif %}