Marius Cramer
2015-08-06 37b29231e47a0c4458dc1c15d98588f16f07e1e2
interface/web/help/templates/help_faq_sections_list.htm
@@ -1,38 +1,50 @@
<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>
<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>
<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 class='page-header'>
   <h1><tmpl_var name="faq_faq_sections_txt"></h1>
</div>
<p><tmpl_var name="list_desc_txt"></p>
        <p class="fieldset-legend">{tmpl_var name="toolsarea_head_txt"}</p>
                <button class="btn btn-default formbutton-success" type="button" data-load-content="help/faq_sections_edit.php">{tmpl_var name="faq_new_section_txt"}</button>
        <p class="fieldset-legend"><tmpl_var name="faq_sections_txt"></p>
            <div class="table-wrapper marginTop15">
<table class="table">
                <thead class="dark form-group-sm">
                    <tr>
                        <th>{tmpl_var name="faq_section_name_txt"}</th>
                        <th class="text-right">{tmpl_var name="faq_delete_txt"}</th>
                        <th class="text-right">{tmpl_var name="faq_edit_txt"}</th>
                    </tr>
                </thead>
            <tbody>
                <tmpl_loop name="records">
                    <tr>
                        <td><b>{tmpl_var name='hfs_name'}</b></td>
                        <td class="text-right">
                            <a class="btn btn-default formbutton-danger formbutton-narrow" href="javascript: ISPConfig.confirm_action('help/faq_sections_delete.php?id={tmpl_var name='id'}&phpsessid={tmpl_var name='phpsessid'}','{tmpl_var name='delete_confirmation'}');"><span class="icon icon-delete"></span></a>
                        </td>
                        <td class="text-right">
                            <a class="btn btn-default formbutton-default formbutton-narrow" data-load-content="help/faq_sections_edit.php?id={tmpl_var name='id'}"><span class="icon icon-edit"></span></a>
                        </td>
                    </tr>
                </tmpl_loop>
                <tmpl_unless name="records">
                    <tr class="tbl_row_noresults tbl_row_<tmpl_if name='__EVEN__'}even<tmpl_else>uneven</tmpl_if>">
                        <td colspan="3">{tmpl_var name='globalsearch_noresults_text_txt'}</td>
                    </tr>
                </tmpl_unless>
            </tbody>
            <tfoot>
                    <tr>
                        <td colspan="3"><tmpl_var name="paging"></td>
                    </tr>
                </tfoot>
            </table>
</div>