Secondary Footer Bar Question
johnfrenchxyz opened this issue · 1 comments
johnfrenchxyz commented
@ekivemark / @dtisza1 / @whytheplatypus
Quick question. I noticed that there is this secondary gray bar in the footer:
Here is the code for that section:
<div class="row container-fluid">
<div class="row footer-wrapper panel-footer">
{% if user.is_authenticated %}
<div class="row-container-fluid" >
<p class="row-container-fluid footer-small well">
{{ settings.APPLICATION_TITLE }} is operated by {{settings.ORGANIZATION_TITLE }}. {{settings.DISCLOSURE_TEXT}}
</p>
</div>
{% endif %}
{% if user.is_superuser %}
{% if settings.ALLOWED_HOSTS %}<div class="ds ds-l-row ds-u-fill--gray-lightest ds-u-font-size--small">{{ settings.ALLOWED_HOSTS|last }}</div>
{% endif %}
{% else %}
{% if settings.DEBUG %}
<div class="ds ds-l-row ds-u-fill--gray-lightest ds-u-font-style--italic ds-u-font-size--small">{{ settings.ALLOWED_HOSTS|last }}</div>
{% endif %}
{% endif %}
</div><!-- /.container-fluid -->
Basically, I want to know if I can tweak the styling of this bar to make it blend better with the rest of the page. What is the use of this bar? Does this just display info based on app registration information and user permissions?
Any context here would be awesome! If I can clean this up, it will make the Sandbox login page look a lot cleaner.
johnfrenchxyz commented
This got answered for me.