Widgitized the output

This commit is contained in:
Deon George
2012-11-30 09:58:15 +11:00
parent 808730e1e3
commit 4b51fc2727
40 changed files with 1139 additions and 1165 deletions

View File

@@ -0,0 +1,41 @@
<!-- $o = ORM::factory('NODE') -->
<table class="box-full">
<tr>
<td class="head" colspan="2">Backup Settings</td>
</tr>
<tr>
<td class="spacer">&nbsp;</td>
</tr>
<tr>
<td style="width: 40%;">Domain</td>
<td style="width: 60%;" class="data"><?php echo HTML::anchor('domain/detail/'.$o->DOMAIN,$o->display('DOMAIN')); ?></td>
</tr>
<tr>
<td>Client Option Set</td>
<td class="data"><?php echo $o->display('OPTION_SET'); ?></td>
</tr>
<tr>
<td>Collocation Group</td>
<td class="data"><?php echo $o->COLLOCGROUP_NAME ? $o->display('COLLOCGROUP_NAME') : 'Not Set'; ?></td>
</tr>
<tr>
<td>Client Compression</td>
<td class="data"><?php echo $o->display('COMPRESSION'); ?></td>
</tr>
<tr>
<td>TXN Group Max</td>
<td class="data"><?php echo $o->txngroupmax(); ?></td>
</tr>
<tr>
<td>Delete Archives</td>
<td class="data"><?php echo $o->display('ARCHDELETE'); ?></td>
</tr>
<tr>
<td>Delete Backups</td>
<td class="data"><?php echo $o->display('BACKDELETE'); ?></td>
</tr>
<tr>
<td>Keep Mount Points</td>
<td class="data"><?php echo $o->display('KEEP_MP'); ?> (<?php echo $o->display('MAX_MP_ALLOWED'); ?>)</td>
</tr>
</table>