18 lines
948 B
HTML
18 lines
948 B
HTML
<!-- Basket -->
|
|
{% set show_delivery_option = False %}
|
|
<div id="{{ model.id_basket }}" class="{{ model.flag_card }} {{ model.flag_scrollable }}">
|
|
<div class="container column">
|
|
<div class="container row">
|
|
<h2>Basket</h2>
|
|
<img class="img-icon" src="{{ url_for('static', filename='images/icon_basket.png')}}" alt="Basket icon">
|
|
</div>
|
|
{% for basket_item in model.basket.items %}
|
|
{% include '_block_store_basket_item.html' %}
|
|
{% endfor %}
|
|
<h3 id="{{ model.id_basket_total }}">Total: {{ model.output_basket_total() }}</h3>{% if not model.app.is_included_VAT %}<h4> + VAT </h4>{% endif %}
|
|
<p id="{{ model.id_label_basket_empty}}" style="margin: 1vh;">Buy some shit dawg!</p>
|
|
<!-- <div id="{{ model.id_basket_notices }}"> include line above
|
|
</div> -->
|
|
<button id="{{ model.id_btn_checkout }}" type="submit">Checkout</button>
|
|
</div>
|
|
</div> |