1234567891011 |
- {% extends "wagtailadmin/base.html" %}
- {% load wagtailimages_tags wagtailsettings_tags %}
- {% block furniture %}
- {% include "wagtailcrx/includes/codered_banner.html" %}
- {{ block.super }}
- {% endblock %}
- {# NOTE: this must be on a single line, otherwise Django templates will create
- whitespace, and wagtail will think the whitespace is the custom logo! #}
- {% block branding_logo %}{% if settings.wagtailcrx.LayoutSettings.logo %}<div class="codered-logo-container {{settings.wagtailcrx.LayoutSettings.navbar_color_scheme}}">{% image settings.wagtailcrx.LayoutSettings.logo max-300x300 as logo_image %}<img src="{{ logo_image.url }}" class="codered-logo-custom" alt="Dashboard"/></div>{% endif %}{% endblock %}
|