mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-23 18:03:17 +00:00
30 lines
634 B
Twig
30 lines
634 B
Twig
<h1>Pull Assets from uploader setting</h1>
|
|
|
|
{{ form_start(form, {'action': path('worker_admin_pullAssets')}) }}
|
|
|
|
<div class="control-group">
|
|
{{ form_row(form.endpointCommit) }}
|
|
</div>
|
|
|
|
<div class="control-group">
|
|
{{ form_row(form.endpointToken) }}
|
|
</div>
|
|
|
|
<div class="control-group">
|
|
{{ form_row(form.clientSecret) }}
|
|
</div>
|
|
|
|
<div class="control-group">
|
|
{{ form_row(form.clientId) }}
|
|
</div>
|
|
|
|
<div class="control-group">
|
|
{{ form_row(form.pullInterval) }}
|
|
</div>
|
|
|
|
<div class="control-group">
|
|
<input type="submit" class="btn btn-primary" value={{ "Initialize pull assets"|trans }} />
|
|
</div>
|
|
|
|
{{ form_end(form) }}
|