diff options
author | Mario Vavti <mario@mariovavti.com> | 2018-09-27 14:56:47 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2018-09-27 14:56:47 +0200 |
commit | 6b23c3e1796b818ce893ed919f2e2bdd000c83fb (patch) | |
tree | 441348d1cbeb31e461af1090af713e73f88aae49 /view/tpl/settings_module_ajax.tpl | |
parent | bdf6289b323c26329087eb21911576239e0b6216 (diff) | |
download | volse-hubzilla-6b23c3e1796b818ce893ed919f2e2bdd000c83fb.tar.gz volse-hubzilla-6b23c3e1796b818ce893ed919f2e2bdd000c83fb.tar.bz2 volse-hubzilla-6b23c3e1796b818ce893ed919f2e2bdd000c83fb.zip |
implement conversation tools (settings/conversation), remove additional features from the settings menu and get rid of skill levels
Diffstat (limited to 'view/tpl/settings_module_ajax.tpl')
-rw-r--r-- | view/tpl/settings_module_ajax.tpl | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/view/tpl/settings_module_ajax.tpl b/view/tpl/settings_module_ajax.tpl new file mode 100644 index 000000000..bd7b6f3df --- /dev/null +++ b/view/tpl/settings_module_ajax.tpl @@ -0,0 +1,11 @@ +<form id="settings_module_ajax_form" action="{{$action_url}}" method="post" autocomplete="off"> + <input type='hidden' name='form_security_token' value='{{$form_security_token}}'> + <input type='hidden' name='aj' value='1'> + {{foreach $features as $feature}} + {{include file="field_checkbox.tpl" field=$feature}} + {{/foreach}} + <div class="settings-submit-wrapper" > + <button id="settings_module_ajax_submit" type="submit" name="submit" class="btn btn-primary">{{$submit}}</button> + </div> +</form> + |