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
|
|
|
|
*}}
|
2018-02-07 15:23:19 +00:00
|
|
|
<div id="adminpage">
|
|
|
|
<h1>{{$title}}</h1>
|
2017-12-01 05:40:55 +00:00
|
|
|
|
2020-04-01 22:27:14 +00:00
|
|
|
<form action="{{$baseurl}}/admin/features" method="post" autocomplete="off">
|
|
|
|
<input type="hidden" name="form_security_token" value="{{$form_security_token}}">
|
2017-12-01 05:40:55 +00:00
|
|
|
|
2018-02-07 15:23:19 +00:00
|
|
|
{{foreach $features as $g => $f}}
|
2020-04-01 22:27:14 +00:00
|
|
|
<h2 class="settings-heading"><a href="javascript:;">{{$f.0}}</a></h2>
|
2018-02-07 15:23:19 +00:00
|
|
|
|
|
|
|
<div class="settings-content-block">
|
|
|
|
{{foreach $f.1 as $fcat}}
|
2018-07-10 20:57:13 +00:00
|
|
|
<div class="settings-block">
|
2024-03-25 21:55:42 +00:00
|
|
|
{{include file="field_select.tpl" field=$fcat}}
|
2018-07-10 20:57:13 +00:00
|
|
|
</div>
|
2018-02-07 15:23:19 +00:00
|
|
|
{{/foreach}}
|
2017-12-01 05:40:55 +00:00
|
|
|
|
2021-05-19 21:47:15 +00:00
|
|
|
<div class="settings-submit-wrapper">
|
2018-12-14 03:28:12 +00:00
|
|
|
<input type="submit" name="submit" class="settings-features-submit" value="{{$submit}}" />
|
2018-02-07 15:23:19 +00:00
|
|
|
</div>
|
2017-12-01 05:40:55 +00:00
|
|
|
</div>
|
2018-02-07 15:23:19 +00:00
|
|
|
{{/foreach}}
|
2017-12-01 05:40:55 +00:00
|
|
|
|
2018-02-07 15:23:19 +00:00
|
|
|
</form>
|
|
|
|
</div>
|