2021-07-18 20:09:11 +00:00
|
|
|
<div id='adminpage'>
|
|
|
|
<h1>{{$title}} - {{$page}}</h1>
|
|
|
|
|
2021-09-01 12:00:23 +00:00
|
|
|
<h2>{{$label_current}}: <b>{{$storagebackend}}</b></h2>
|
2021-07-18 20:36:06 +00:00
|
|
|
|
2021-09-01 12:00:23 +00:00
|
|
|
<h2>{{$label_config}}</h2>
|
2021-07-18 20:36:06 +00:00
|
|
|
|
|
|
|
{{foreach from=$availablestorageforms item=$storage}}
|
2021-07-20 21:33:35 +00:00
|
|
|
<form action="{{$baseurl}}/admin/storage/{{$storage.prefix}}" method="post">
|
|
|
|
<input type='hidden' name='form_security_token' value="{{$form_security_token}}">
|
2021-07-18 20:36:06 +00:00
|
|
|
<h3>{{$storage.name}}</h3>
|
2021-07-24 16:57:29 +00:00
|
|
|
{{if $storage.form}}
|
|
|
|
{{foreach from=$storage.form item=$field}}
|
|
|
|
{{include file=$field.field field=$field}}
|
|
|
|
{{/foreach}}
|
|
|
|
{{else}}
|
|
|
|
{{$noconfig}}
|
|
|
|
{{/if}}
|
2021-07-18 20:09:11 +00:00
|
|
|
|
2021-07-20 21:33:35 +00:00
|
|
|
{{if $storage.form}}
|
2021-07-24 16:57:29 +00:00
|
|
|
<input type="submit" name="submit_save" value="{{$save}}"/>
|
|
|
|
{{if $storage.active}}
|
|
|
|
<input type="submit" name="submit_save_set" value="{{$save_reload}}"/>
|
|
|
|
{{else}}
|
2021-09-02 21:27:35 +00:00
|
|
|
<input type="submit" name="submit_save_set" value="{{$save_use}}"/>
|
2021-07-24 16:57:29 +00:00
|
|
|
{{/if}}
|
|
|
|
{{else}}
|
2021-09-02 21:27:35 +00:00
|
|
|
<br /><input type="submit" name="submit_save_set" {{if $storage.active}}disabled="disabled"{{/if}} value="{{$use}}"/>
|
2021-07-20 21:33:35 +00:00
|
|
|
{{/if}}
|
2021-07-18 20:09:11 +00:00
|
|
|
</form>
|
2021-07-20 21:33:35 +00:00
|
|
|
{{/foreach}}
|
|
|
|
|
2021-07-18 20:09:11 +00:00
|
|
|
</div>
|