2024-08-24 18:23:27 +00:00
|
|
|
{{*
|
|
|
|
* Copyright (C) 2010-2024, the Friendica project
|
|
|
|
* SPDX-FileCopyrightText: 2010-2024 the Friendica project
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
*}}
|
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>
|
2023-03-26 11:39:11 +00:00
|
|
|
{{$storagebackend_ro_txt nofilter}}
|
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}}"/>
|
2023-03-26 22:17:40 +00:00
|
|
|
{{if $is_writable}}
|
2023-03-25 18:02:47 +00:00
|
|
|
{{if $storage.active}}
|
2021-07-24 16:57:29 +00:00
|
|
|
<input type="submit" name="submit_save_set" value="{{$save_reload}}"/>
|
2023-03-25 18:02:47 +00:00
|
|
|
{{else}}
|
2021-09-02 21:27:35 +00:00
|
|
|
<input type="submit" name="submit_save_set" value="{{$save_use}}"/>
|
2023-03-25 18:02:47 +00:00
|
|
|
{{/if}}
|
2021-07-24 16:57:29 +00:00
|
|
|
{{/if}}
|
2023-03-26 22:17:40 +00:00
|
|
|
{{elseif $is_writable}}
|
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>
|