Added termination-date to domains
This commit is contained in:
@@ -1,8 +1,19 @@
|
||||
<tr>
|
||||
<if $row['termination_date'] != ''>
|
||||
<tr class="{$row['termination_css']}">
|
||||
</if>
|
||||
<if $row['termination_date'] == ''>
|
||||
<tr>
|
||||
</if>
|
||||
|
||||
|
||||
<td>{$row['domain']}
|
||||
<if (isset($row['standardsubdomain']) && $row['standardsubdomain'] == $row['id'])>
|
||||
({$lng['admin']['stdsubdomain']})
|
||||
</if>
|
||||
<if $row['termination_date'] != ''>
|
||||
<br><small><div class="red">({$lng['domains']['termination_date_overview']} {$row['termination_date']})</div></small>
|
||||
</if>
|
||||
|
||||
</td>
|
||||
<td>{$row['ipandport']}</td>
|
||||
<td>{$row['customername']}
|
||||
|
||||
10
templates/Sparkle/assets/css/main.css
vendored
10
templates/Sparkle/assets/css/main.css
vendored
@@ -1493,3 +1493,13 @@ fieldset.file {
|
||||
padding: 5px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.domain-canceled {
|
||||
/* Color copied from .warningcontainer */
|
||||
background-color: #fffecc;
|
||||
}
|
||||
|
||||
.domain-expired {
|
||||
/* Color copied from .errorcontainer */
|
||||
background-color: rgb(242, 222, 222);
|
||||
}
|
||||
@@ -1,5 +1,14 @@
|
||||
<tr>
|
||||
<td><a href="http://{$row['domain']}" target="_blank">{$row['domain']}</a></td>
|
||||
<if $row['termination_date'] != ''>
|
||||
<tr class="{$row['termination_css']}">
|
||||
</if>
|
||||
<if $row['termination_date'] == ''>
|
||||
<tr>
|
||||
</if>
|
||||
<td><a href="http://{$row['domain']}" target="_blank">{$row['domain']}</a>
|
||||
<if $row['termination_date'] != ''>
|
||||
<br><small><div class="red">({$lng['domains']['termination_date_overview']} {$row['termination_date']})</div></small>
|
||||
</if>
|
||||
</td>
|
||||
<td>
|
||||
<if $row['aliasdomain'] == ''>{$row['documentroot']}</if>
|
||||
<if isset($row['aliasdomainid']) && $row['aliasdomainid'] != 0>{$lng['domains']['aliasdomain']} {$row['aliasdomain']}</if>
|
||||
|
||||
Reference in New Issue
Block a user