<div class="bottomfixedbar">
<div class="container">
<div class="row">
<div class="col-xl-12 col-lg-12 col-md-12 col-sm-12 col-12">
You are currently browsing the website as
<select name="" id="targetGroupSelect"onchange="redirectToSelectedValue()">
{% if userTargetGroup == null %}
<option >Default</option>
{% endif %}
{% for targetGroupsData in targetGroups %}
<option value="/?={{targetGroupsData.id}}" {{ userTargetGroup != null ? (userTargetGroup.name == targetGroupsData.name ? 'selected' : '') : '' }}>{{targetGroupsData.name}}</option>
{% endfor %}
</select>
</div>
</div>
</div>
</div>