{% extends "framework/base.html" %} {% block header %} {{ _('PeriodicTask 编辑') }} {% endblock %} {% block content %}

{{ _('PeriodicTask') }} {{ _('编辑') }}




{{ _('Short Description For This Task') }}
{{ _('The Name of the Celery Task that Should be Run. (Example: "proj.tasks.import_contacts")') }}
{{ _('Interval Schedule to run the task on. Set only one schedule type, leave the others null.') }}
{{ _('Crontab Schedule to run the task on. Set only one schedule type, leave the others null.') }}
{{ _('Solar Schedule to run the task on. Set only one schedule type, leave the others null.') }}
{{ _('Clocked Schedule to run the task on. Set only one schedule type, leave the others null.') }}
{{ _('JSON encoded positional arguments (Example: ["arg1", "arg2"])') }}
{{ _('JSON encoded keyword arguments (Example: {"argument": "value"})') }}
{{ _('Queue defined in CELERY_TASK_QUEUES. Leave None for default queuing.') }}
{{ _('Override Exchange for low-level AMQP routing') }}
{{ _('Override Routing Key for low-level AMQP routing') }}
{{ _('JSON encoded message headers for the AMQP message.') }}
{{ _('Priority Number between 0 and 255. Supported by: RabbitMQ, Redis (priority reversed, 0 is highest).') }}
{{ _('Datetime after which the schedule will no longer trigger the task to run') }}
{{ _('Timedelta with seconds which the schedule will no longer trigger the task to run') }}
{{ _('If True, the schedule will only run the task a single time') }}
{{ _('Datetime when the schedule should begin triggering the task to run') }}
{{ _('Set to False to disable the schedule') }}
{{ _('Datetime that the schedule last triggered the task to run. Reset to None if enabled is set to False.') }}
{{ _('Running count of how many times the schedule has triggered the task') }}
{{ _('Datetime that this PeriodicTask was last modified') }}
{{ _('Detailed description about the details of this Periodic Task') }}
{% endblock %}