Skip to content

Commit 22cf49a

Browse files
author
redray
committed
added domain_id column
1 parent 291e0ea commit 22cf49a

File tree

4 files changed

+15
-11
lines changed

4 files changed

+15
-11
lines changed

interface/web/sites/lib/lang/de_web_domain_list.lng

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<?php
22
$wb['list_head_txt'] = 'Websites';
3+
$wb["domain_id_txt"] = 'ID';
34
$wb['active_txt'] = 'Active';
45
$wb['server_id_txt'] = 'Server';
56
$wb['domain_txt'] = 'Domain';

interface/web/sites/lib/lang/en_web_domain_list.lng

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<?php
22
$wb["list_head_txt"] = 'Websites';
3+
$wb["domain_id_txt"] = 'ID';
34
$wb["active_txt"] = 'Active';
45
$wb["server_id_txt"] = 'Server';
56
$wb["domain_txt"] = 'Domain';

interface/web/sites/templates/web_domain_list.htm

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,14 @@ <h2><tmpl_var name="list_head_txt"></h2>
1717
<table class="list">
1818
<thead>
1919
<tr>
20+
<th class="tbl_col_domain_id" scope="col"><tmpl_var name="domain_id_txt"></th>
2021
<th class="tbl_col_active" scope="col"><tmpl_var name="active_txt"></th>
2122
<th class="tbl_col_server_id" scope="col"><tmpl_var name="server_id_txt"></th>
2223
<th class="tbl_col_domain" scope="col"><tmpl_var name="domain_txt"></th>
2324
<th class="tbl_col_buttons" scope="col">&nbsp;</th>
2425
</tr>
2526
<tr>
27+
<td class="tbl_col_domain_id"><input type="text" name="search_domain_id" value="{tmpl_var name='search_domain_id'}" /></td>
2628
<td class="tbl_col_active"><select name="search_active" onChange="submitForm('pageForm','sites/web_domain_list.php');">{tmpl_var name='search_active'}</select></td>
2729
<td class="tbl_col_server_id"><select name="search_server_id" onChange="submitForm('pageForm','sites/web_domain_list.php');">{tmpl_var name='search_server_id'}</select></td>
2830
<td class="tbl_col_domain"><input type="text" name="search_domain" value="{tmpl_var name='search_domain'}" /></td>
@@ -32,6 +34,7 @@ <h2><tmpl_var name="list_head_txt"></h2>
3234
<tbody>
3335
<tmpl_loop name="records">
3436
<tr class="tbl_row_<tmpl_if name='__EVEN__'}even<tmpl_else>uneven</tmpl_if>">
37+
<td class="tbl_col_domain_id"><a href="#" onClick="loadContent('sites/web_domain_edit.php?id={tmpl_var name='id'}');">{tmpl_var name="domain_id"}</a></td>
3538
<td class="tbl_col_active"><a href="#" onClick="loadContent('sites/web_domain_edit.php?id={tmpl_var name='id'}');">{tmpl_var name="active"}</a></td>
3639
<td class="tbl_col_server_id"><a href="#" onClick="loadContent('sites/web_domain_edit.php?id={tmpl_var name='id'}');">{tmpl_var name="server_id"}</a></td>
3740
<td class="tbl_col_domain"><a href="#" onClick="loadContent('sites/web_domain_edit.php?id={tmpl_var name='id'}');">{tmpl_var name="domain"}</a></td>
@@ -45,7 +48,7 @@ <h2><tmpl_var name="list_head_txt"></h2>
4548
</tbody>
4649
<tfoot>
4750
<tr>
48-
<td class="tbl_footer tbl_paging" colspan="4"><tmpl_var name="paging"></td>
51+
<td class="tbl_footer tbl_paging" colspan="5"><tmpl_var name="paging"></td>
4952
</tr>
5053
</tfoot>
5154
</table>

interface/web/themes/default/css/screen/wforms.css

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -267,24 +267,23 @@
267267
white-space: expression('nowrap');
268268
}
269269

270-
271-
272-
273-
274-
270+
/* === */
271+
275272
form .pnl_formsarea .wf_oneField fieldset {
276273
border: none;
277274
margin: 0;
278275
padding-left: 8px;
279276
}
280277

281-
282-
283-
.tbl_col_server_name input {
284-
width: 150px;
285-
}
278+
/* === */
279+
280+
.tbl_col_server_name input { width: 150px; }
286281
.tbl_col_mail_server input, .tbl_col_web_server input, .tbl_col_dns_server input, .tbl_col_file_server input, .tbl_col_db_server input, .tbl_col_vserver_server input {
287282
width: 20px;
288283
}
284+
.tbl_col_client_id input, .tbl_col_domain_id input { width: 40px; }
285+
.tbl_col_country input { width: 20px; }
286+
287+
/* === */
289288

290289
}

0 commit comments

Comments
 (0)