minor preparations for system-hostname as 'normal' domain (to use ssl/LE/etc.)
Signed-off-by: Michael Kaufmann (d00p) <d00p@froxlor.org>
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -1,23 +1,20 @@
|
|||||||
<if $row['termination_date'] != ''>
|
<if $row['termination_css'] != ''>
|
||||||
<tr class="{$row['termination_css']}">
|
<tr class="{$row['termination_css']}">
|
||||||
</if>
|
</if>
|
||||||
<if $row['termination_date'] == ''>
|
<if $row['termination_css'] == ''>
|
||||||
<tr>
|
<tr>
|
||||||
</if>
|
</if>
|
||||||
|
|
||||||
|
|
||||||
<td>{$row['domain']}
|
<td>{$row['domain']}
|
||||||
<if (isset($row['standardsubdomain']) && $row['standardsubdomain'] == $row['id'])>
|
<if (isset($row['standardsubdomain']) && $row['standardsubdomain'] == $row['id'])>
|
||||||
({$lng['admin']['stdsubdomain']})
|
({$lng['admin']['stdsubdomain']})
|
||||||
</if>
|
</if>
|
||||||
<if $row['termination_date'] != ''>
|
<if $row['termination_date'] != ''>
|
||||||
<br><small><div class="red">({$lng['domains']['termination_date_overview']} {$row['termination_date']})</div></small>
|
<br><small><div class="red">({$lng['domains']['termination_date_overview']} {$row['termination_date']})</div></small>
|
||||||
</if>
|
</if>
|
||||||
|
|
||||||
</td>
|
</td>
|
||||||
<td>{$row['ipandport']}</td>
|
<td>{$row['ipandport']}</td>
|
||||||
<td>{$row['customername']}
|
<td>{$row['customername']}
|
||||||
(<a href="{$linker->getLink(array('section' => 'customers', 'page' => 'customers', 'action' => 'su', 'id' => $row['customerid']))}" rel="external">{$row['loginname']}</a>)
|
<if !empty($row['loginname'])>(<a href="{$linker->getLink(array('section' => 'customers', 'page' => 'customers', 'action' => 'su', 'id' => $row['customerid']))}" rel="external">{$row['loginname']}</a>)</if>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<a href="{$linker->getLink(array('section' => 'domains', 'page' => $page, 'action' => 'edit', 'id' => $row['id']))}">
|
<a href="{$linker->getLink(array('section' => 'domains', 'page' => $page, 'action' => 'edit', 'id' => $row['id']))}">
|
||||||
@@ -26,7 +23,7 @@
|
|||||||
<if $row['letsencrypt'] == '1'>
|
<if $row['letsencrypt'] == '1'>
|
||||||
<img src="templates/{$theme}/assets/img/icons/ssl_letsencrypt.png" alt="{$lng['panel']['letsencrypt']}" title="{$lng['panel']['letsencrypt']}" />
|
<img src="templates/{$theme}/assets/img/icons/ssl_letsencrypt.png" alt="{$lng['panel']['letsencrypt']}" title="{$lng['panel']['letsencrypt']}" />
|
||||||
</if>
|
</if>
|
||||||
<if !(isset($row['domainaliasid']) && $row['domainaliasid'] != 0)>
|
<if !(isset($row['domainaliasid']) && $row['domainaliasid'] != 0) && $row['id'] != Settings::Get('system.hostname_id')>
|
||||||
<if !(isset($row['standardsubdomain']) && $row['standardsubdomain'] == $row['id'])>
|
<if !(isset($row['standardsubdomain']) && $row['standardsubdomain'] == $row['id'])>
|
||||||
<a href="{$linker->getLink(array('section' => 'domains', 'page' => $page, 'action' => 'delete', 'id' => $row['id']))}">
|
<a href="{$linker->getLink(array('section' => 'domains', 'page' => $page, 'action' => 'delete', 'id' => $row['id']))}">
|
||||||
<img src="templates/{$theme}/assets/img/icons/delete.png" alt="{$lng['panel']['delete']}" title="{$lng['panel']['delete']}" />
|
<img src="templates/{$theme}/assets/img/icons/delete.png" alt="{$lng['panel']['delete']}" title="{$lng['panel']['delete']}" />
|
||||||
|
|||||||
20
templates/Sparkle/assets/css/main.css
vendored
20
templates/Sparkle/assets/css/main.css
vendored
@@ -1495,11 +1495,21 @@ fieldset.file {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.domain-canceled {
|
.domain-canceled {
|
||||||
/* Color copied from .warningcontainer */
|
/* Color copied from .warningcontainer */
|
||||||
background-color: #fffecc;
|
background-color: #fffecc;
|
||||||
}
|
}
|
||||||
|
|
||||||
.domain-expired {
|
.domain-expired {
|
||||||
/* Color copied from .errorcontainer */
|
/* Color copied from .errorcontainer */
|
||||||
background-color: rgb(242, 222, 222);
|
background-color: rgb(242, 222, 222);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.domain-hostname {
|
||||||
|
background-color: rgb(53, 106, 160);
|
||||||
|
color: #ddd;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
table.hl tbody tr.domain-hostname:hover {
|
||||||
|
background-color: rgb(64, 150, 238);
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user