You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
{% extends 'base.html' %}
|
|
|
|
|
|
{% block content %}
|
|
|
<div class="container-xl">
|
|
|
|
|
|
<h2>Search Results for "{{ query }}"</h2>
|
|
|
|
|
|
{% if albumes %}
|
|
|
<ul>
|
|
|
{% for album in albumes %}
|
|
|
<li>
|
|
|
<a href="{{ url_for('paginas.album', album_id=album.id) }}">{{ album.name }} by {{ album.artist }}</a>
|
|
|
</li>
|
|
|
{% endfor %}
|
|
|
</ul>
|
|
|
{% else %}
|
|
|
<p>No encontré álbumes que coincidan con tu criterio.</p>
|
|
|
{% endif %}
|
|
|
|
|
|
<a href="{{ url_for('paginas.index') }}">Back to Home</a>
|
|
|
</div>
|
|
|
{% endblock %}
|