(legacy) fix padding in system_usermanager.php, closes https://github.com/opnsense/core/issues/561

This commit is contained in:
Ad Schellevis 2016-01-07 17:40:52 +01:00
parent 6b48c19387
commit cfb34330ee

View File

@ -1015,21 +1015,25 @@ $( document ).ready(function() {
</p>
</td>
</tr>
<tr>
<td colspan="4">
<table>
<tr>
<td></td>
<td width="20px"></td>
<td width="20px"><span class="glyphicon glyphicon-user text-danger"></span></td>
<td width="200px"><?= gettext('System Admininistrator') ?></td>
<td width="20px"><span class="glyphicon glyphicon-user text-muted"></span></td>
<td width="200px"><?= gettext('Disabled User') ?></td>
<td width="20px"><span class="glyphicon glyphicon-user text-info"></span></td>
<td width="200px"><?= gettext('Normal User') ?></td>
<td></td>
</tr>
</table>
</td>
</tr>
</tfoot>
</table>
<table>
<tr>
<td></td>
<td width="20px"></td>
<td width="20px"><span class="glyphicon glyphicon-user text-danger"></span></td>
<td width="200px"><?= gettext('System Admininistrator') ?></td>
<td width="20px"><span class="glyphicon glyphicon-user text-muted"></span></td>
<td width="200px"><?= gettext('Disabled User') ?></td>
<td width="20px"><span class="glyphicon glyphicon-user text-info"></span></td>
<td width="200px"><?= gettext('Normal User') ?></td>
<td></td>
</tr>
</table>
</form>
<?php
endif;?>