diff options
author | zotlabs <mike@macgirvin.com> | 2018-09-17 19:38:40 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2018-09-17 19:38:40 -0700 |
commit | dfdf11d461d9c72fa4fb54fd28949af2a90209b3 (patch) | |
tree | 8b3cddfb1f235c60125763066f13c3822c0ac530 /view | |
parent | cc5ef57843f4012f7319a0ffd687fe26950a7790 (diff) | |
parent | c4c1b1f5a2ab90873bf1eef31ed794d94fdd6077 (diff) | |
download | volse-hubzilla-dfdf11d461d9c72fa4fb54fd28949af2a90209b3.tar.gz volse-hubzilla-dfdf11d461d9c72fa4fb54fd28949af2a90209b3.tar.bz2 volse-hubzilla-dfdf11d461d9c72fa4fb54fd28949af2a90209b3.zip |
Merge branch 'dev'
Diffstat (limited to 'view')
-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> |