{% if request.user.is_superuser and request.session.all_brands %}
{% include "components/navigation/dropdown_profile_item.html" with currentBrand="" image="/static/img/brands/SAIL/apple-touch-icon.png" title="Concept Library" %}
{% for brand in request.session.all_brands %}
{% include "components/navigation/dropdown_profile_item.html" with currentBrand=brand|upper image=brand|getBrandLogo title=brand|upper %}
{% endfor %}
{% endif %}