{% load static %}
<a href="{% if user.is_authenticated %}{% url 'dashboard' %}{% else %}{% url 'home' %}{% endif %}" class="navbar-brand my-0 mr-md-auto
font-weight-normal">
{% if theme_carrier %}
{% if theme_carrier.company_logo %}
<img class="logo" src="{{ theme_carrier.company_logo.url }}">
{% else %}
<h1>{{ theme_carrier.company_display_name }}</h1>
{% endif %}
{% else %}
<img class="logo" src="{% static 'images/CDR-logo.png' %}">
{% endif %}
</a>