2024-08-24 20:23:27 +02:00
|
|
|
{{*
|
|
|
|
* Copyright (C) 2010-2024, the Friendica project
|
|
|
|
* SPDX-FileCopyrightText: 2010-2024 the Friendica project
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
*}}
|
2018-02-07 16:23:19 +01:00
|
|
|
<div id="adminpage">
|
|
|
|
<h1>{{$title}}</h1>
|
2017-12-01 00:40:55 -05:00
|
|
|
|
2020-04-01 18:27:14 -04:00
|
|
|
<form action="{{$baseurl}}/admin/features" method="post" autocomplete="off">
|
|
|
|
<input type="hidden" name="form_security_token" value="{{$form_security_token}}">
|
2017-12-01 00:40:55 -05:00
|
|
|
|
2018-02-07 16:23:19 +01:00
|
|
|
{{foreach $features as $g => $f}}
|
2020-04-01 18:27:14 -04:00
|
|
|
<h2 class="settings-heading"><a href="javascript:;">{{$f.0}}</a></h2>
|
2018-02-07 16:23:19 +01:00
|
|
|
|
|
|
|
<div class="settings-content-block">
|
|
|
|
{{foreach $f.1 as $fcat}}
|
2018-07-10 22:57:13 +02:00
|
|
|
<div class="settings-block">
|
2024-03-25 21:55:42 +00:00
|
|
|
{{include file="field_select.tpl" field=$fcat}}
|
2018-07-10 22:57:13 +02:00
|
|
|
</div>
|
2018-02-07 16:23:19 +01:00
|
|
|
{{/foreach}}
|
2017-12-01 00:40:55 -05:00
|
|
|
|
2021-05-19 17:47:15 -04:00
|
|
|
<div class="settings-submit-wrapper">
|
2018-12-13 22:28:12 -05:00
|
|
|
<input type="submit" name="submit" class="settings-features-submit" value="{{$submit}}" />
|
2018-02-07 16:23:19 +01:00
|
|
|
</div>
|
2017-12-01 00:40:55 -05:00
|
|
|
</div>
|
2018-02-07 16:23:19 +01:00
|
|
|
{{/foreach}}
|
2017-12-01 00:40:55 -05:00
|
|
|
|
2018-02-07 16:23:19 +01:00
|
|
|
</form>
|
|
|
|
</div>
|