moglia
2010-10-13 7f2c53dad8f4abf8f1f9e51a147c09dad3ccbec6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<h2>{tmpl_var name="faq_faq_questions_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_edit.php');">
          <span>{tmpl_var name="faq_new_question_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_question_txt"}</th>
            <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>{tmpl_var name='hf_question'}</td>
    <td>{tmpl_var name='hf_section'}</td>
    <td>
        <div class="buttons icons16">
            <a class="icons16 icoDelete" href="javascript: del_record('help/faq_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_edit.php?id={tmpl_var name='id'}');">{tmpl_var name="faq_edit_txt"}</a>
    </td>
</tr>
</tmpl_loop>
 
 
</table>
</fieldset>
</div>