You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.7 KiB
40 lines
1.7 KiB
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!-- Pos custom popup for view images -->
|
|
<templates id="template" xml:space="preserve">
|
|
<t t-name="multi_image_in_pos.MultiImagePopup" owl="1">
|
|
<div class="popup popup-confirm">
|
|
<t t-if="this.props.data.length > 0">
|
|
<div class="carousel" aria-label="Gallery">
|
|
<ol class="carousel__viewport">
|
|
<t t-foreach="props.data" t-as="value"
|
|
t-key="value_index">
|
|
<li class="carousel__slide">
|
|
<div class="carousel__snapper">
|
|
<t t-if="this.props.data.length > 0">
|
|
<div class="image mt-2">
|
|
<img class="img-fluid img"
|
|
t-attf-src="{{'data:image/jpeg;base64,' + value}}"/>
|
|
</div>
|
|
</t>
|
|
</div>
|
|
</li>
|
|
</t>
|
|
</ol>
|
|
</div>
|
|
</t>
|
|
<t t-else="">
|
|
<div class="container">
|
|
<div class="row mt-5">
|
|
<h3>No images added for this product</h3>
|
|
</div>
|
|
</div>
|
|
</t>
|
|
<footer class="footer modal-footer">
|
|
<div class="button cancel btn btn-lg btn-secondary"
|
|
t-on-click="cancel">
|
|
<t t-esc="props.cancelText"/>
|
|
</div>
|
|
</footer>
|
|
</div>
|
|
</t>
|
|
</templates>
|
|
|