mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-23 18:03:17 +00:00
40 lines
829 B
Twig
40 lines
829 B
Twig
<h3> Config Worker queue retry</h3>
|
|
|
|
<p>Set up the delay between two attempts per queue!</p>
|
|
{{ form_start(form, {'action': path('worker_admin_configuration')}) }}
|
|
|
|
<div class="control-group">
|
|
{{ form_row(form.assetsIngest) }}
|
|
</div>
|
|
|
|
<div class="control-group">
|
|
{{ form_row(form.createRecord) }}
|
|
</div>
|
|
|
|
<div class="control-group">
|
|
{{ form_row(form.subdefCreation) }}
|
|
</div>
|
|
|
|
<div class="control-group">
|
|
{{ form_row(form.writeMetadatas) }}
|
|
</div>
|
|
|
|
<div class="control-group">
|
|
{{ form_row(form.webhook) }}
|
|
</div>
|
|
|
|
<div class="control-group">
|
|
{{ form_row(form.exportMail) }}
|
|
</div>
|
|
|
|
<div class="control-group">
|
|
{{ form_row(form.populateIndex) }}
|
|
</div>
|
|
|
|
<div class="control-group">
|
|
<input type="submit" class="btn btn-primary" value={{ "Apply retry delay"|trans }} />
|
|
</div>
|
|
|
|
|
|
{{ form_end(form) }}
|