|
|
|
@ -4,13 +4,24 @@ |
|
|
|
<h2>Search Results for "{{ query }}"</h2> |
|
|
|
|
|
|
|
{% if songs %} |
|
|
|
<ul> |
|
|
|
{% for song in songs %} |
|
|
|
<li> |
|
|
|
<a href="{{ url_for('song', song_id=song.id) }}">{{ song.title }} by {{ song.author }}</a> |
|
|
|
</li> |
|
|
|
{% endfor %} |
|
|
|
</ul> |
|
|
|
<table> |
|
|
|
<thead> |
|
|
|
<tr> |
|
|
|
<th>Title</th> |
|
|
|
<th>Author</th> |
|
|
|
<th>Album</th> |
|
|
|
</tr> |
|
|
|
</thead> |
|
|
|
<tbody> |
|
|
|
{% for song in songs %} |
|
|
|
<tr> |
|
|
|
<td><a href="{{ url_for('song', song_id=song.id) }}">{{ song.title }}</a></td> |
|
|
|
<td>{{ song.author }}</td> |
|
|
|
<td><a href="{{ url_for('album', album_id=song.album.id) }}">{{ song.album.name }}</a></td> |
|
|
|
</tr> |
|
|
|
{% endfor %} |
|
|
|
</tbody> |
|
|
|
</table> |
|
|
|
{% else %} |
|
|
|
<p>No songs found matching your query.</p> |
|
|
|
{% endif %} |
|
|
|
|