-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver_php_list.htm
More file actions
59 lines (50 loc) · 3.11 KB
/
server_php_list.htm
File metadata and controls
59 lines (50 loc) · 3.11 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<div class='page-header'>
<h1><tmpl_var name="list_head_txt"></h1>
</div>
<p>{tmpl_var name="toolsarea_head_txt"}</p>
<button class="button iconstxt icoAdd" type="button" data-load-content="admin/server_php_edit.php">
<span>{tmpl_var name="add_new_record_txt"}</span>
</button>
<p><tmpl_var name="list_head_txt"></p>
<div class="table-wrapper marginTop15">
<table class="table">
<thead class="dark">
<tr>
<th><tmpl_var name="server_id_txt"></th>
<th><tmpl_var name="client_id_txt"></th>
<th><tmpl_var name="name_txt"></th>
<th>{tmpl_var name='search_limit'}</th>
</tr>
<tr>
<td><select name="search_server_id">{tmpl_var name='search_server_id'}</select></td>
<td><select name="search_client_id">{tmpl_var name='search_client_id'}</select></td>
<td><div class="col-sm-9"><input type="text" name="search_name" value="{tmpl_var name='search_name'}" /></div></td>
<td>
<button type="button" class="btn btn-default formbutton-filter" name="Filter" id="Filter" value="{tmpl_var name="filter_txt"}" onclick="submitForm('pageForm','admin/server_php_list.php');">{tmpl_var name="filter_txt"}</button>
</td>
</tr>
</thead>
<tbody>
<tmpl_loop name="records">
<tr class="tbl_row_<tmpl_if name='__EVEN__'}even<tmpl_else>uneven</tmpl_if>">
<td><a href="#" data-load-content="admin/server_php_edit.php?id={tmpl_var name='id'}">{tmpl_var name="server_id"}</a></td>
<td><a href="#" data-load-content="admin/server_php_edit.php?id={tmpl_var name='id'}">{tmpl_var name="client_id"}</a></td>
<td><a href="#" data-load-content="admin/server_php_edit.php?id={tmpl_var name='id'}">{tmpl_var name="name"}</a></td>
<td>
<a class="btn btn-default formbutton-delete" href="javascript: del_record('admin/server_php_del.php?id={tmpl_var name='id'}&phpsessid={tmpl_var name='phpsessid'}','{tmpl_var name='delete_confirmation'}');">{tmpl_var name='delete_txt'}</button>
</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="4">{tmpl_var name='globalsearch_noresults_text_txt'}</td>
</tr>
</tmpl_unless>
</tbody>
<tfoot>
<tr>
<td colspan="4"><tmpl_var name="paging"></td>
</tr>
</tfoot>
</table>
</div>