{##
# Find By {{ level }}
#}
<div class="find-by-level-block">
<ul class="items {{ this.getListClass() }}">
{% for item in this.getItems() %}
<li class="item">
<a href="{{ this.getLevelLink(item) }}" title="{{ item.getValue() }}">
{% if this.isLogoShown() %}
<span class="level-image lazy-load{% if not item.getLogo() %} no-image{% endif %}">
{{ widget('QSL\\Make\\View\\LevelLogo', image=item.getLogo(), alt=item.getValue()) }}
</span>
{% endif %}
{% if this.isNameShown() %}
<div class="level-name">
<span class="current-level">
{{ item.getValue() }}
</span>
{% if this.getParentLevelName(item) %}
<span class="parent-level">
({{ this.getParentLevelName(item) }})
</span>
{% endif %}
</div>
{% endif %}
</a>
</li>
{% endfor %}
</ul>
<div class="view-all">
<a href="{{ this.getViewAllLink() }}">{{ t("View All") }}<span class="count"> ({{ this.getItemsQuantity() }})</span></a>
</div>
</div>