Removed old code

This commit is contained in:
Damien Broqua 2022-02-18 17:22:21 +01:00
parent 4c80b6d9f1
commit cb69a62603

View File

@ -64,64 +64,6 @@
</li>
</ul>
</nav>
<!-- <table>
<thead>
<tr>
<th>Pochette</th>
<th>
</th>
<th>Titre</th>
<th>
<div class="field">
<span @click="changeSort('year', sort !== 'year' || order === 'desc' ? 'asc' : 'desc')">
<span class="icon">
<i v-if="sort !== 'year'" class="fa-solid fa-sort"></i>
<i v-if="sort === 'year' && order === 'desc'" class="fa-solid fa-sort-down"></i>
<i v-if="sort === 'year' && order === 'asc'" class="fa-solid fa-sort-up"></i>
</span>
<span>Année</span>
</span>
</div>
</th>
<th>
<div class="field">
<span @click="changeSort('country', sort !== 'country' || order === 'desc' ? 'asc' : 'desc')">
<span class="icon">
<i v-if="sort !== 'country'" class="fa-solid fa-sort"></i>
<i v-if="sort === 'country' && order === 'desc'" class="fa-solid fa-sort-down"></i>
<i v-if="sort === 'country' && order === 'asc'" class="fa-solid fa-sort-up"></i>
</span>
<span>Pays</span>
</span>
</div>
</th>
<th>
<div class="field">
<span @click="changeSort('formats.name', sort !== 'formats.name' || order === 'desc' ? 'asc' : 'desc')">
<span class="icon">
<i v-if="sort !== 'formats.name'" class="fa-solid fa-sort"></i>
<i v-if="sort === 'formats.name' && order === 'desc'" class="fa-solid fa-sort-down"></i>
<i v-if="sort === 'formats.name' && order === 'asc'" class="fa-solid fa-sort-up"></i>
</span>
<span>Artiste</span>
</span>
<select v-model="format" @change="changeFilter">
<option value="">Tous</option>
<%
for (let i = 0; i < page.formats.length; i += 1 ) {
__append(`<option value="${page.formats[i]}">${page.formats[i]}</option>`);
}
%>
</select>
</div>
</th>
<th>Genres</th>
<th>Styles</th>
</tr>
</thead>
</table> -->
</section>
<script>