From 5df6059f4153845f2d7db0bff426c4ad70c299cd Mon Sep 17 00:00:00 2001
From: cfoe <cfoe@ispconfig3>
Date: Tue, 04 Sep 2012 08:47:19 -0400
Subject: [PATCH] a lot of minor template fixes
---
interface/web/help/templates/help_faq_sections_list.htm | 16 ++++++++--------
1 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/interface/web/help/templates/help_faq_sections_list.htm b/interface/web/help/templates/help_faq_sections_list.htm
index 39b2b40..9166f13 100644
--- a/interface/web/help/templates/help_faq_sections_list.htm
+++ b/interface/web/help/templates/help_faq_sections_list.htm
@@ -18,19 +18,19 @@
<table class="list">
<thead>
<tr class="caption">
- <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>
+ <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>
- <td><b>{tmpl_var name='hfs_name'}</b></td>
- <td>
+ <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>
- <a href="#" onclick="loadContent('help/faq_sections_edit.php?id={tmpl_var name='id'}');">{tmpl_var name="faq_edit_txt"}</a>
+ <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>
--
Gitblit v1.9.1