I found it difficult to quickly see which features were disabled and enabled so I added some simple color coding using the existing bootstrap theme.

The edit is very simple and can be applied on almost all of the *_list.tpl pages and it consists of ternary PHP in one or two forms
For example:
upload/admin/view/template/extension/payment.tpl
line:34
Change
Code: Select all
<tr>
Code: Select all
<tr<?php echo (!$extension['installed'] ? ' class="danger"': (!$extension['status'] ? ' class="warning"': ''));?>>
Other examples are all very similar (most edits are like this)
upload/admin/view/template/system/language_list.tpl
line: 55
Change
Code: Select all
<tr>
Code: Select all
<tr<?php echo ($language['status']=='Disabled' ? ' class="danger"': '');?>>
One slightly more complex four state coloration- if you have changed the statuses you will need to adjust this though
upload/admin/view/template/billing/invoice_list.tpl
line: 99
Change
Code: Select all
<tr>
Code: Select all
<tr<?php echo ($invoice['status_id']=='2' ? ' class="info"': ($invoice['status_id']=='3' ? ' class="danger"': ($invoice['status_id']=='4' ? ' class="success"': ($invoice['status_id']=='5' ? ' class="warning"': ''))));?>>
I would have submitted a pull request but I have quite a lot of edits and I'm not great at GIT (yet)