{% extends 'base.html' %} {% block title %}Song search test{% endblock %} {% block sidebar %} {% endblock %} {% block content %} {% for i in results %}
{% if type == "album" %}
{% if request.user.is_authenticated %}
{% endif %}

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

{% endif %} {% if type == "artist" %}
{% if request.user.is_authenticated %}
{% endif %}
{% for j in albums %}

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

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

{% endif %}

{% endfor %}
{% endif %} {% if type == "song" %}

{{i.song_name}}

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

{{i.album.album_name}}

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

{% endif %}
{% endfor %} {% endblock %}