1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Added style to BaseTable's empty_text

This commit is contained in:
Jeremy Stretch
2017-08-21 17:38:27 -04:00
parent ae73e6f04d
commit eb994a691a
2 changed files with 2 additions and 2 deletions

View File

@@ -24,7 +24,7 @@
{% empty %}
{% if table.empty_text %}
<tr>
<td colspan="{{ table.columns|length }}">{{ table.empty_text }}</td>
<td colspan="{{ table.columns|length }}" class="text-center text-muted">&mdash; {{ table.empty_text }} &mdash;</td>
</tr>
{% endif %}
{% endfor %}