templates/shop/order/_cart_steps.html.twig line 1

  1. {% if get_category(7).isActive %}
    <div class="cart-error">
       {{ get_category(7).html|raw }}
    </div>
    {% endif %}
    <div class="cart-steps">
        <a href="{{ path('shop_order_first') }}" class="cart-steps__step {% if step == 1 %} is-active {% elseif step > 1 %} completed {% endif %}">
            <span class="cart-steps__step-number">1</span>
            <span class="cart-steps__step-word">{% trans %}kosik{% endtrans %}</span>
        </a>
        <a href="{{ path('shop_order_second') }}" class="cart-steps__step {% if step == 2 %} is-active {% elseif step > 2 %} completed {% endif %}">
            <span class="cart-steps__step-number">2</span>
            <span class="cart-steps__step-word">{% trans %}doprava{% endtrans %}</span>
        </a>
        <a href="{{ path('shop_order_third') }}" class="cart-steps__step {% if step == 3 %} is-active {% elseif step > 3 %} completed {% endif %}">
            <span class="cart-steps__step-number">3</span>
            <span class="cart-steps__step-word">{% trans %}platba{% endtrans %}</span>
        </a>
        <a href="{{ path('shop_order_fourth') }}" class="cart-steps__step {% if step == 4%} is-active {% elseif step > 4 %} completed {% endif %}">
            <span class="cart-steps__step-number">4</span>
            <span class="cart-steps__step-word">{% trans %}dodaci.udaje{% endtrans %}</span>
        </a>
        <a href="{{ path('shop_order_fifth') }}" class="cart-steps__step {% if step == 5 %} is-active {% elseif step > 5 %} completed {% endif %}">
            <span class="cart-steps__step-number">5</span>
            <span class="cart-steps__step-word">{% trans %}shrnuti{% endtrans %}</span>
        </a>
    </div>