Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ISPConfig
ISPConfig 3
Commits
22cf49af
Commit
22cf49af
authored
Nov 04, 2008
by
redray
Browse files
added domain_id column
parent
291e0eaa
Changes
4
Hide whitespace changes
Inline
Side-by-side
interface/web/sites/lib/lang/de_web_domain_list.lng
View file @
22cf49af
<?php
$wb
[
'list_head_txt'
]
=
'Websites'
;
$wb
[
"domain_id_txt"
]
=
'ID'
;
$wb
[
'active_txt'
]
=
'Active'
;
$wb
[
'server_id_txt'
]
=
'Server'
;
$wb
[
'domain_txt'
]
=
'Domain'
;
...
...
interface/web/sites/lib/lang/en_web_domain_list.lng
View file @
22cf49af
<?php
$wb
[
"list_head_txt"
]
=
'Websites'
;
$wb
[
"domain_id_txt"
]
=
'ID'
;
$wb
[
"active_txt"
]
=
'Active'
;
$wb
[
"server_id_txt"
]
=
'Server'
;
$wb
[
"domain_txt"
]
=
'Domain'
;
...
...
interface/web/sites/templates/web_domain_list.htm
View file @
22cf49af
...
...
@@ -17,12 +17,14 @@
<table
class=
"list"
>
<thead>
<tr>
<th
class=
"tbl_col_domain_id"
scope=
"col"
><tmpl_var
name=
"domain_id_txt"
></th>
<th
class=
"tbl_col_active"
scope=
"col"
><tmpl_var
name=
"active_txt"
></th>
<th
class=
"tbl_col_server_id"
scope=
"col"
><tmpl_var
name=
"server_id_txt"
></th>
<th
class=
"tbl_col_domain"
scope=
"col"
><tmpl_var
name=
"domain_txt"
></th>
<th
class=
"tbl_col_buttons"
scope=
"col"
>
</th>
</tr>
<tr>
<td
class=
"tbl_col_domain_id"
><input
type=
"text"
name=
"search_domain_id"
value=
"{tmpl_var name='search_domain_id'}"
/></td>
<td
class=
"tbl_col_active"
><select
name=
"search_active"
onChange=
"submitForm('pageForm','sites/web_domain_list.php');"
>
{tmpl_var name='search_active'}
</select></td>
<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>
<td
class=
"tbl_col_domain"
><input
type=
"text"
name=
"search_domain"
value=
"{tmpl_var name='search_domain'}"
/></td>
...
...
@@ -32,6 +34,7 @@
<tbody>
<tmpl_loop
name=
"records"
>
<tr
class=
"tbl_row_<tmpl_if name='__EVEN__'}even<tmpl_else>uneven</tmpl_if>"
>
<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>
<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>
<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>
<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 @@
</tbody>
<tfoot>
<tr>
<td
class=
"tbl_footer tbl_paging"
colspan=
"
4
"
><tmpl_var
name=
"paging"
></td>
<td
class=
"tbl_footer tbl_paging"
colspan=
"
5
"
><tmpl_var
name=
"paging"
></td>
</tr>
</tfoot>
</table>
...
...
interface/web/themes/default/css/screen/wforms.css
View file @
22cf49af
...
...
@@ -267,24 +267,23 @@
white-space
:
expression
(
'nowrap'
);
}
/* === */
form
.pnl_formsarea
.wf_oneField
fieldset
{
border
:
none
;
margin
:
0
;
padding-left
:
8px
;
}
.tbl_col_server_name
input
{
width
:
150px
;
}
/* === */
.tbl_col_server_name
input
{
width
:
150px
;
}
.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
{
width
:
20px
;
}
.tbl_col_client_id
input
,
.tbl_col_domain_id
input
{
width
:
40px
;
}
.tbl_col_country
input
{
width
:
20px
;
}
/* === */
}
\ No newline at end of file
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment