{% extends 'default_frame.twig' %}
{% block javascript %}
<script>
var localfavo = localStorage.getItem('favo');
if(localfavo) {
var lsfavo = JSON.parse(localfavo);
console.log(lsfavo);
if (lsfavo.length){
for (i=0;i<lsfavo.length;i++) {
var html = '<li class="ec-shelfGrid__item position-relative pb-4">';
html += '<a href="https://tanzoec.apteq5x.com/products/detail/' + lsfavo[i][0] + '">';
html += '<p class="ec-shelfGrid__item-image">';
html += '<img src="/html/upload/save_image/' + lsfavo[i][1] + '" alt="' + lsfavo[i][2] + '">';
html += '</p><p>' + lsfavo[i][2] + '</P>';
html += '<p class="price02-default">' + lsfavo[i][3] + '</p></a>';
html += '<span onclick="del_favo(' + lsfavo[i][0] + ')" class="delete_favo position-absolute text-white d-flex justify-content-center align-items-center"><i class="bi bi-trash3"></i></span>';
html += '</li>';
$('#favo_list').append(html);
}
} else {
$('#favo_list').append('<li class="p-3">お気に入りが登録されていません</li>');
}
}
</script>
{% endblock %}
{% block main %}
<div class="ec-pageHeader">
<h1>{{ 'お気に入りリスト'|trans }}</h1>
</div>
<div class="ec-shelfRole">
<ul id="favo_list" class="ec-shelfGrid">
</ul>
</div>
{% endblock %}