{% extends "base.html" %} {% load i18n static wagtailcore_tags wagtailimages_tags heroicons %} {% block header %} {% if settings.core.SystemSettings.site_logo_default %} {% image settings.core.SystemSettings.site_logo_default width-215 as logo_default %} {% if settings.core.SystemSettings.site_logo_mobile %} {% image settings.core.SystemSettings.site_logo_mobile width-60 as logo_mobile %} {% else %} {% endif %} {% else %} {% endif %} {% if request.user.is_authenticated %} {% trans "Open menu" %} {% heroicon_outline "bars-3" size=32 stroke_width=2 class="inline" aria_hidden="true" %} {% else %} {% if request.path != '/auth/' and request.path != '/login/' %} {% include "includes/login_button.html" %} {% endif %} {% endif %} {% block header_menu %} {% include "core/navigation/primarynav-apply.html" %} {% endblock header_menu %} {% if settings.core.SystemSettings.site_logo_mobile %} {% image settings.core.SystemSettings.site_logo_mobile width-60 as logo_mobile %} {% else %} {% endif %} {% trans "Close" %} {% heroicon_outline "x-mark" size=32 stroke_width=2 class="inline text-white" aria_hidden="true" %} {% include "core/navigation/primarynav-apply.html" %} {% if request.user.is_authenticated %} {% heroicon_micro "user" class="inline align-middle w-4 h-4 me-1" aria_hidden=true %} {{ request.user }} {% trans "Log out" %} {% endif %} {% comment %} Notifications {% endcomment %} {% if request.user.is_authenticated and request.user.is_apply_staff %} {% heroicon_outline "bell-alert" class="inline me-1 text-black" aria_hidden="true" %} {% trans "Notifications" %} {% trans "Show All" %} {% endif %} {% comment %} Notifications End{% endcomment %} {% if request.path != '/auth/' and request.path != '/login/' %} {% include "includes/login_button.html" %} {% endif %} {% if request.user.is_authenticated %} {% trans "Log out" %} {% endif %} {% endblock header %} {% block footer %} {% if settings.core.SystemSettings.footer_content %} {% endif %} {% endblock footer %}