{% extends "base.html" %} {% block content %}
{% if search_results is defined or favs is defined and favs %} {% for result in search_results %} {% endfor %}
artist song rating type favorite
{{ result.artist_name}} {{ result.song_name}} (ver {{result.version}}) {{ result.rating}}/5 ({{result.votes}}) {{ result._type}}
{% endif %} {% if tab is defined %} View on Ultimate Guitar
{{ tab.artist_name }} - {{ tab.song_name }} (ver {{tab.version }})
{% if tab.tuning %} Tuning: {{ tab.tuning }}
{% endif %} Difficulty: {{ tab.difficulty }}
Capo: {% if tab.capo %} {{ tab.capo -}} th fret {% else %} no capo {% endif %}

{{ tab.tab | safe }}

Alternative versions

{% for version in tab.versions %} Version {{ version.version }} ({{ version._type }}) {{version.rating }}/5 ({{ version.votes }})
{% endfor %} {% endif %} {% if favs is defined and favs %} {% endif %} {% if tab is defined and tab %} {% endif %} {% endblock %}