Skip to content

Commit

Permalink
Dev Adjusted storage table display
Browse files Browse the repository at this point in the history
  • Loading branch information
c-schmitz committed Sep 25, 2017
1 parent 5ed0e47 commit d982cf8
Showing 1 changed file with 21 additions and 16 deletions.
37 changes: 21 additions & 16 deletions application/views/admin/global_settings/_storage_ajax.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,24 +9,29 @@

<label><?php eT('Overview'); ?></label>
<table class='table table-striped table-bordered'>
<tr>
<td style='width: 70%;'><?php eT('Total storage:'); ?></td>
<td><?php echo $totalStorage; ?></td>
</tr>
<tr>
<td><?php eT('Survey storage:'); ?></td>
<td><?php echo $surveySize; ?></td>
</tr>
<tr>
<td><?php eT('Template storage:'); ?></td>
<td><?php echo $templateSize; ?></td>
</tr>
<tr>
<td><?php eT('Label set storage:'); ?></td>
<td><?php echo $labelSize; ?></td>
</tr>
<tfoot>
<tr>
<td style='width: 70%;'><?php eT('Total storage:'); ?></td>
<td><?php echo $totalStorage; ?></td>
</tr>
</tfoot>
<tbody>
<tr>
<td><?php eT('Survey storage:'); ?></td>
<td><?php echo $surveySize; ?></td>
</tr>
<tr>
<td><?php eT('Template storage:'); ?></td>
<td><?php echo $templateSize; ?></td>
</tr>
<tr>
<td><?php eT('Label set storage:'); ?></td>
<td><?php echo $labelSize; ?></td>
</tr>
</tbody>
</table>


<?php if ($surveys): ?>
<label><?php eT('Survey storage'); ?></label>
<table class='table table-striped table-bordered'>
Expand Down

0 comments on commit d982cf8

Please sign in to comment.