mirror of
https://github.com/rembo10/headphones.git
synced 2026-03-22 20:59:27 +00:00
89 lines
2.3 KiB
HTML
89 lines
2.3 KiB
HTML
<%inherit file="base.html" />
|
|
|
|
<%def name="body()">
|
|
|
|
<div id="paddingheader">
|
|
<h1><span>L</span>Search Results</h1>
|
|
</div>
|
|
<table class="display" id="searchresults_table">
|
|
<thead>
|
|
<tr>
|
|
%if type == 'album':
|
|
<th id="albumart"></th>
|
|
<th id="albumname">Album Name</th>
|
|
%elif type == 'artist':
|
|
<th id="artistart"></th>
|
|
%endif
|
|
<th id="artistname">Artist Name</th>
|
|
<th id="score">Score</th>
|
|
<th id="add"></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
%if searchresults:
|
|
%for result in searchresults:
|
|
<%
|
|
if result['score'] == 100:
|
|
grade = 'A'
|
|
else:
|
|
grade = 'Z'
|
|
%>
|
|
|
|
<tr class="grade${grade}">
|
|
%if type == 'album':
|
|
<td id="albumart">
|
|
<div class="album-art-small">
|
|
<div class="status">
|
|
<div>
|
|
<a class="web-symbol" href="addReleaseById?rid=${result['albumid']}" title="Add to collection"><span>+</span></a>
|
|
</div>
|
|
</div>
|
|
<img />
|
|
</div>
|
|
</td>
|
|
<td id="albumname"><a href="${result['albumurl']}">${result['title']}</a></td>
|
|
%endif
|
|
<td id="artistname"><a href="${result['url']}" for="${result['id']}">${result['uniquename']}</a></td>
|
|
<td id="score">
|
|
<div class="searchscore" title="The match result is: ${result['score']}%">
|
|
<div class="progress-container" title="Match result is ${result['score']}%">
|
|
<span class="searchmatch">${result['score']}%</span>
|
|
<div style="width: ${result['score']}%"></div>
|
|
</div>
|
|
</div>
|
|
</td>
|
|
%if type == 'album':
|
|
<td id="add"></td>
|
|
%elif type == 'artist':
|
|
<td id="add"><a class="btnAdd" href="addArtist?artistid=${result['id']}" title="Add this Artist"></a></td>
|
|
%endif
|
|
</tr>
|
|
%endfor
|
|
%endif
|
|
</tbody>
|
|
</table>
|
|
</%def>
|
|
|
|
<%def name="headIncludes()">
|
|
|
|
</%def>
|
|
|
|
<%def name="javascriptIncludes()">
|
|
<script src="js/libs/jquery.dataTables.min.js"></script>
|
|
<script type="text/javascript">
|
|
function getArtistArt() {
|
|
$("table#searchresults_table tr td#artistname").each(function(){
|
|
var id = $(this).attr('for');
|
|
var artist = $(this).children('a').text();
|
|
var image = $(this).parent().find("td#albumart img");
|
|
if ( !image.hasClass('done') ) {
|
|
image.addClass('done');
|
|
getArtistInfo(artist,image,1,id);
|
|
}
|
|
});
|
|
}
|
|
$(document).ready(function(){
|
|
getArtistArt();
|
|
});
|
|
</script>
|
|
</%def> |