diff options
Diffstat (limited to 'ratatoeskr/templates/src')
3 files changed, 58 insertions, 5 deletions
diff --git a/ratatoeskr/templates/src/systemtemplates/instant_select.tpl b/ratatoeskr/templates/src/systemtemplates/instant_select.tpl new file mode 100644 index 0000000..01c5017 --- /dev/null +++ b/ratatoeskr/templates/src/systemtemplates/instant_select.tpl @@ -0,0 +1,5 @@ +<ste:mktag name="instant_select" mandatory="name|array"><select name="$_tag_parameters[name]"> + <ste:foreach array="$_tag_parameters[array]" value="instant_select_v"> + <option value="$instant_select_v"?{~{$_tag_parameters[selected]|eq|$instant_select_v}| selected="selected"|}>$instant_select_v</option> + </ste:foreach> +</select></ste:mktag> diff --git a/ratatoeskr/templates/src/systemtemplates/sections.html b/ratatoeskr/templates/src/systemtemplates/sections.html index 1228933..8fd75bc 100644 --- a/ratatoeskr/templates/src/systemtemplates/sections.html +++ b/ratatoeskr/templates/src/systemtemplates/sections.html @@ -1,9 +1,5 @@ <ste:load name="master.html" /> -<ste:mktag name="instant_select" mandatory="name|array"><select name="$_tag_parameters[name]"> - <ste:foreach array="$_tag_parameters[array]" value="instant_select_v"> - <option value="$instant_select_v"?{~{$_tag_parameters[selected]|eq|$instant_select_v}| selected="selected"|}>$instant_select_v</option> - </ste:foreach> -</select></ste:mktag> +<ste:load name="instant_select.tpl" /> <ste:block name="content"> <ste:if>$success <ste:then> diff --git a/ratatoeskr/templates/src/systemtemplates/settings.html b/ratatoeskr/templates/src/systemtemplates/settings.html new file mode 100644 index 0000000..5b0d0c5 --- /dev/null +++ b/ratatoeskr/templates/src/systemtemplates/settings.html @@ -0,0 +1,52 @@ +<ste:load name="master.html" /> +<ste:load name="instant_select.tpl" /> +<ste:block name="content"> + <ste:if>$error + <ste:then> + <div class="error"><ste:escape>$error</ste:escape></div> + </ste:then> + </ste:if> + <ste:if>$success + <ste:then> + <div class="success"><ste:escape>$success</ste:escape></div> + </ste:then> + </ste:if> + + <form action="$rel_path_to_root/backend/admin/settings" method="POST" accept-charset="UTF-8"> + <h2><ste:get_translation for="comment_settings" /></h2> + <strong><ste:get_translation for="comment_textprocessor" />:</strong> <ste:instant_select name="comment_textprocessor" array="textprocessors" selected="$comment_textprocessor" /><br /> + <strong><ste:get_translation for="comment_auto_visible" />:</strong> <input type="checkbox" name="comment_auto_visible" value="yes"?{$comment_auto_visible| checked="checked"|} /><br /> + <input type="submit" name="save_comment_settings" /> + </form> + + <form action="$rel_path_to_root/backend/admin/settings" method="POST" accept-charset="UTF-8"> + <h2><ste:get_translation for="language_settings" /></h2> + <table class="listtab"> + <thead> + <tr> + <th> </th> + <th><ste:get_translation for="language_code" /></th> + <th><ste:get_translation for="language" /></th> + <th><ste:get_translation for="default_language" /></th> + </tr> + </thead> + <tbody> + <ste:foreach array="used_langs" value="lang"> + <tr> + <td><input type="radio" name="language_select" value="$lang[code]" /></td> + <td>$lang[code]</td> + <td><ste:escape>$lang[name]</ste:escape></td> + <td>?{$lang[default]|<strong><ste:get_translation for="yes" /></strong>|<ste:get_translation for="no" />}</td> + </tr> + </ste:foreach> + </tbody> + </table> + <div> + <input type="submit" name="delete" value="<ste:get_translation for='delete' />" /> <select name="really_delete"><option value="no" selected="selected"><ste:get_translation for="no" /></option><option value="yes"><ste:get_translation for="yes" /></option></select> + | + <input type="submit" name="make_default" value="<ste:get_translation for='make_default' />" /> + | + <input type="submit" name="add_language" value="<ste:get_translation for='add_language' />" /> <ste:instant_select name="language_to_add" array="all_langcodes" /> + </div> + </form> +</ste:block> |