Ajustement sur le tableau des musiques

This commit is contained in:
Vincent Calame 2024-07-18 13:20:50 +02:00 committed by root
parent 61cbbeee57
commit 455b7e03bd

View File

@ -25,26 +25,26 @@ Déclaration du bloc destiné à recevoir le client
<table id="musiques">
<thead>
<tr>
<th data-sorter="text" data-placeholder="Filtre sur le titre">Titre</th>
<th data-sorter="text" data-placeholder="Filtre sur lartiste">Artiste</th>
<th data-sorter="text" data-placeholder="Filtre sur le titre">Titre</th>
<th data-placeholder="Filtre sur le genre">Genre</th>
<th data-placeholder="Filtre sur la licence">Licence</th>
<th data-placeholder="Filtre sur lémission">Émissions</th>
<!--<th data-placeholder="Filtre sur lémission">Émissions</th>-->
</tr>
</thead>
<tbody>
<BOUCLE_tableau(DATA){source json, https://bases.fichotheque.net/exemole/libreavous/api/v1/site/fiche-array?sort=titre-asc&xml=%3Cfiche-query%3E%3Ccorpus%3Emorceau%3C%2Fcorpus%3E%3C%2Ffiche-query%3E}{datapath array}>
<tr>
<td><a href="#VALEUR{properties/urlorigin}" target="_blank">#VALEUR{properties/titre}</a></td>
<td>#VALEUR{properties/artistes}</td>
<td><a href="#VALEUR{properties/urlorigin}" target="_blank">#VALEUR{properties/titre}</a></td>
<td>#VALEUR{properties/genres}</td>
<td>#VALEUR{properties/licence}</td>
<td>
<!--<td>
<BOUCLE_emissions(DATA){source array, #VALEUR{properties/emissions}}>
<a href="#VALEUR{idalpha}">#VALEUR{idalpha}</a>
</BOUCLE_emissions>
</td>
</td>-->
</tr>
</BOUCLE_tableau>