From c84a3072be73bb9e68fbfcfbdb9bd887fee463b2 Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Thu, 2 Mar 2023 11:26:31 -0500 Subject: [PATCH] Dont show None if bio is missing --- vrobbler/templates/music/artist_detail.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/vrobbler/templates/music/artist_detail.html b/vrobbler/templates/music/artist_detail.html index bbc117f..586bab1 100644 --- a/vrobbler/templates/music/artist_detail.html +++ b/vrobbler/templates/music/artist_detail.html @@ -18,8 +18,10 @@ {% endif %} {% endif %}
+ {% if artist.biography %}

{{artist.biography|safe|linebreaks|truncatewords:160}}


+ {% endif %}

Musicbrainz