From aa78fde6a92f66b84d626e114d8b54a5fb6ece0c Mon Sep 17 00:00:00 2001 From: ftimme <ft@falkotimme.com> Date: Wed, 14 Nov 2012 07:19:43 -0500 Subject: [PATCH] - Added function for IPv6 prefixes in multiserver mirror setups to nginx plugin. --- interface/web/help/templates/help_faq_sections_list.htm | 75 +++++++++++++++++++------------------ 1 files changed, 39 insertions(+), 36 deletions(-) diff --git a/interface/web/help/templates/help_faq_sections_list.htm b/interface/web/help/templates/help_faq_sections_list.htm index fe4f0f2..9166f13 100644 --- a/interface/web/help/templates/help_faq_sections_list.htm +++ b/interface/web/help/templates/help_faq_sections_list.htm @@ -1,38 +1,41 @@ -<h2>{tmpl_var name="faq_faq_sections_txt"}</h2> - <div class="pnl_toolsarea"> - <fieldset><legend>{tmpl_var name="toolsarea_head_txt"}</legend> - <div class="buttons"> -<button class="iconstxt icoAdd" type="button" onclick="loadContent('help/faq_sections_edit.php');"> - <span>{tmpl_var name="faq_new_section_txt"}</span> - </button> - </div> - </fieldset> - </div> +<h2><tmpl_var name="faq_faq_sections_txt"></h2> +<p><tmpl_var name="list_desc_txt"></p> -<div class="pnl_listarea"> -<fieldset><legend><tmpl_var name="faq_sections_txt"></legend> -<table class="list"> - <thead> - <tr> - <th class="tbl_col_active" scope="col">{tmpl_var name="faq_section_name_txt"}</th> - <th class="tbl_col_server_id" scope="col">{tmpl_var name="faq_delete_txt"}</th> - <th class="tbl_col_domain" scope="col">{tmpl_var name="faq_edit_txt"}</th> - </tr> - </thead> +<div class="panel panel_list_support_faq_section"> -<tmpl_loop name="records"> -<tr> - <td><b>{tmpl_var name='hfs_name'}</b></td> - <td> -<div class="buttons icons16"> -<a class="icons16 icoDelete" href="javascript: del_record('help/faq_sections_delete.php?id={tmpl_var name='id'}&phpsessid={tmpl_var name='phpsessid'}','{tmpl_var name='delete_confirmation'}');"> -<span>{tmpl_var name="faq_delete_txt"}</span></a> </div> -</td><td> - -<a href="#" onClick="loadContent('help/faq_sections_edit.php?id={tmpl_var name='id'}');">{tmpl_var name="faq_edit_txt"}</a> - </td> -</tr> -</tmpl_loop> -</table> -</fieldset> -</div> + <div class="pnl_toolsarea"> + <fieldset><legend>{tmpl_var name="toolsarea_head_txt"}</legend> + <div class="buttons"> + <button class="button iconstxt icoAdd" type="button" onclick="loadContent('help/faq_sections_edit.php');"> + <span>{tmpl_var name="faq_new_section_txt"}</span> + </button> + </div> + </fieldset> + </div> + + <div class="pnl_listarea"> + <fieldset><legend><tmpl_var name="faq_sections_txt"></legend> + <table class="list"> + <thead> + <tr class="caption"> + <th class="tbl_col_section_name" scope="col">{tmpl_var name="faq_section_name_txt"}</th> + <th class="tbl_col_buttons" scope="col">{tmpl_var name="faq_delete_txt"}</th> + <th class="tbl_col_buttons" scope="col">{tmpl_var name="faq_edit_txt"}</th> + </tr> + </thead> + <tmpl_loop name="records"> + <tr class="tbl_row_<tmpl_if name='__EVEN__'}even<tmpl_else>uneven</tmpl_if>"> + <th class="tbl_col_section_name"><b>{tmpl_var name='hfs_name'}</b></td> + <td class="tbl_col_buttons"> + <a class="button icons16 icoDelete" href="javascript: del_record('help/faq_sections_delete.php?id={tmpl_var name='id'}&phpsessid={tmpl_var name='phpsessid'}','{tmpl_var name='delete_confirmation'}');"><span>{tmpl_var name="faq_delete_txt"}</span></a> + </td> + <td class="tbl_col_buttons"> + <a class="button icons16 icoEdit" href="javascript: loadContent('help/faq_sections_edit.php?id={tmpl_var name='id'}');"><span>{tmpl_var name="faq_edit_txt"}</span></a> + </td> + </tr> + </tmpl_loop> + </table> + </fieldset> + </div> + +</div> \ No newline at end of file -- Gitblit v1.9.1