{% extends 'base.html' %}
|
|
|
|
{% block content %}
|
|
<h2>Resultados de la búsqueda para "{{ query }}"</h2>
|
|
|
|
{% if songs %}
|
|
<table id="songTable" class="display">
|
|
<thead>
|
|
<tr>
|
|
<th>Pista</th>
|
|
<th>Título</th>
|
|
<th>Autor</th>
|
|
<th>Álbum</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for song in songs %}
|
|
<tr>
|
|
<td>{{ song.pista }}</td>
|
|
<td><a href="{{ url_for('paginas.song', song_id=song.id) }}">{{ song.title }}</a></td>
|
|
<td>{{ song.author }}</td>
|
|
<td><a href="{{ url_for('paginas.album', album_id=song.album.id) }}">{{ song.album.name }}</a></td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
{% else %}
|
|
<p>No he econtrado canciones que concuerden con tu petición.</p>
|
|
{% endif %}
|
|
|
|
<a href="{{ url_for('paginas.index') }}">Volver al inicio</a>
|
|
{% endblock %}
|