]> git.mxchange.org Git - friendica.git/blob - view/theme/frio/templates/settings/addons.tpl
Fix review points
[friendica.git] / view / theme / frio / templates / settings / addons.tpl
1 <div class="generic-page-wrapper">
2         {{* include the title template for the settings title *}}
3         {{include file="section_title.tpl" title=$title}}
4
5 {{foreach $addon_settings_forms as $addon_settings_form}}
6
7         <form action="settings/addon" method="post" autocomplete="off">
8                 <input type="hidden" name="form_security_token" value="{{$form_security_token}}">
9                 {{$addon_settings_form nofilter}}
10         </form>
11
12 {{foreachelse}}
13
14         <div class="alert alert-info" role="alert">{{$no_addon_settings_configured}}</div>
15
16 {{/foreach}}
17
18 </div>