Fixes #11087: Fix background color of bottom banner content

This commit is contained in:
Jeremy Stretch 2022-12-06 15:40:59 -05:00
parent d4d8d00d01
commit d2d60c0607
2 changed files with 8 additions and 6 deletions

View File

@ -9,6 +9,8 @@
### Bug Fixes ### Bug Fixes
* [#11041](https://github.com/netbox-community/netbox/issues/11041) - Correct power utilization percentage precision * [#11041](https://github.com/netbox-community/netbox/issues/11041) - Correct power utilization percentage precision
* [#11087](https://github.com/netbox-community/netbox/issues/11087) - Fix background color of bottom banner content
* [#11101](https://github.com/netbox-community/netbox/issues/11101) - Correct circuits count under site view
--- ---

View File

@ -103,14 +103,14 @@ Blocks:
{% block content %}{% endblock %} {% block content %}{% endblock %}
</div> </div>
{% endblock %} {% endblock %}
{# Bottom banner #}
{% if config.BANNER_BOTTOM %}
<div class="text-center mx-3">
{{ config.BANNER_BOTTOM|safe }}
</div>
{% endif %}
</div> </div>
{% if config.BANNER_BOTTOM %}
<div class="text-center mx-3">
{{ config.BANNER_BOTTOM|safe }}
</div>
{% endif %}
{# BS5 pop-up modals #} {# BS5 pop-up modals #}
{% block modals %}{% endblock %} {% block modals %}{% endblock %}