Removed old code
This commit is contained in:
parent
4c80b6d9f1
commit
cb69a62603
1 changed files with 0 additions and 58 deletions
|
@ -64,64 +64,6 @@
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</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>
|
</section>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
|
Loading…
Reference in a new issue