130a87aa9a
Minor updates for ADSL services Updates to Sort::MAsort() Move core OSB items under application/ Moved ACCOUNT functions under application Minor updates to task
52 lines
1.4 KiB
PHP
52 lines
1.4 KiB
PHP
<!-- //@todo To translate -->
|
|
<table class="box-full">
|
|
<tr>
|
|
<td class="head" colspan="2">Service Details</td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="2"> </td>
|
|
</tr>
|
|
<tr>
|
|
<td style="width: 50%">
|
|
<table width="100%">
|
|
<tr>
|
|
<td style="width: 40%;">Domain Name</td>
|
|
<td style="width: 60%;" class="data"><?php echo $so->name(); ?></td>
|
|
</tr>
|
|
<tr>
|
|
<td>Domain Expire</td>
|
|
<td class="data"><?php echo $so->display('domain_expire'); ?></td>
|
|
</tr>
|
|
<tr>
|
|
<td>Domain Primary Name Servers</td>
|
|
<td class="data"><?php echo $so->display('registrar_ns'); ?> <span style="small">(Last Sync: <?php echo $so->display('registrar_lastsync'); ?>)</span></td>
|
|
</tr>
|
|
<tr>
|
|
<td>Domain Auth Password</td>
|
|
<td class="data"><?php echo $so->display('registrar_auth_password'); ?></td>
|
|
</tr>
|
|
<tr>
|
|
<td>Domain Type</td>
|
|
<td class="data"><?php echo $so->display('registrar_type'); ?></td>
|
|
</tr>
|
|
</table>
|
|
</td>
|
|
<td style="width: 50%">
|
|
<table width="100%">
|
|
<?php if ($x=$so->manage_button()) { ?>
|
|
<tr>
|
|
<td style="width: 40%;">Manage Registrar</td>
|
|
<td style="width: 60%;" class="data"><?php echo $x; ?></td>
|
|
</tr>
|
|
<?php } ?>
|
|
<?php if ($x=$so->manage_dns_button()) { ?>
|
|
<tr>
|
|
<td style="width: 40%;">Manage DNS</td>
|
|
<td style="width: 60%;" class="data"><?php echo $x; ?></td>
|
|
</tr>
|
|
<?php } ?>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
</table>
|