16 lines
689 B
PHP
16 lines
689 B
PHP
<table width="100%">
|
|
<tr>
|
|
<td style="width: 50%; vertical-align: top;"><?php echo View::factory('library/info')->set('o',$o); ?></td>
|
|
<td style="width: 100%; vertical-align: top;" rowspan="2"><?php echo View::factory('library/summary')->set('o',$o); ?></td>
|
|
</tr>
|
|
<tr>
|
|
<td style="width: 50%; vertical-align: top;"><?php echo View::factory('library/drives')->set('o',$o); ?></td>
|
|
</tr>
|
|
<tr>
|
|
<td style="width: 100%; vertical-align: top;" colspan="2"><?php echo View::factory('library/volumes-in')->set('o',$o); ?></td>
|
|
</tr>
|
|
<tr>
|
|
<td style="width: 100%; vertical-align: top;" colspan="2"><?php echo View::factory('library/volumes-out')->set('o',$o); ?></td>
|
|
</tr>
|
|
</table>
|