{% extends 'base.html' %} {% block title %}Song search test{% endblock %} {% block sidebar %}

Search results (by {{type}})

You searched for '{{term}}'
Found {{results.count}} results
Source: Local

{% endblock %} {% block content %} {% for i in results %}
{% if type == "album" %}

{{i.album_name}}

Artist: {{i.artist.name}}
Year: {{i.year}}

{% if request.user.is_authenticated %}
{% endif %} {% endif %} {% if type == "artist" %}

{{i.name}}

{% for j in albums %}

{% if j.artist.name == i.name %}

{{ j.album_name }} - {{ j.year }}

{% endif %}

{% endfor %}
{% if request.user.is_authenticated %}
{% endif %} {% endif %} {% if type == "song" %}

{{i.song_name}}

{{i.album.album_name}}

Artist: {{i.artist.name}}
Year: {{i.album.year}}

{% if request.user.is_authenticated %}
{% endif %} {% endif %}
{% endfor %} {% endblock %}