diff options
author | Mario Vavti <mario@mariovavti.com> | 2018-09-17 11:36:11 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2018-09-17 11:36:11 +0200 |
commit | a9853e6033ed6a9af639606fa73bb5b40d2fbbcb (patch) | |
tree | 832c9ac5ee3037b90ab9f0d2138e0fd006612283 /view/tpl/settings_module.tpl | |
parent | dcacfc1124457c9d86bf0fa876829abb4701fbff (diff) | |
download | volse-hubzilla-a9853e6033ed6a9af639606fa73bb5b40d2fbbcb.tar.gz volse-hubzilla-a9853e6033ed6a9af639606fa73bb5b40d2fbbcb.tar.bz2 volse-hubzilla-a9853e6033ed6a9af639606fa73bb5b40d2fbbcb.zip |
seperate settings for mod network
Diffstat (limited to 'view/tpl/settings_module.tpl')
-rwxr-xr-x | view/tpl/settings_module.tpl | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/view/tpl/settings_module.tpl b/view/tpl/settings_module.tpl new file mode 100755 index 000000000..b2ac5462f --- /dev/null +++ b/view/tpl/settings_module.tpl @@ -0,0 +1,15 @@ +<div class="generic-content-wrapper"> + <div class="section-title-wrapper"> + <h2>{{$title}}</h2> + </div> + <div class="section-content-wrapper"> + <form action="{{$action_url}}" method="post" autocomplete="off"> + <input type='hidden' name='form_security_token' value='{{$form_security_token}}'> + {{foreach $features as $feature}} + {{include file="field_checkbox.tpl" field=$feature}} + {{/foreach}} + <div class="settings-submit-wrapper" > + <button type="submit" name="submit" class="btn btn-primary">{{$submit}}</button> + </div> + </div> +</div> |