1
0
mirror of https://github.com/krateng/maloja.git synced 2023-08-10 21:12:55 +03:00

Showing artists and title in one column

This commit is contained in:
Krateng 2019-06-10 17:42:08 +02:00
parent 1eee88482c
commit 65afef8489

View File

@ -14,8 +14,9 @@ def entity_column(element,counting=[],image=None):
if "artists" in element:
# track
html += "<td class='artists'>" + html_links(element["artists"]) + "</td>"
html += "<td class='title'>" + html_link(element) + "</td>"
# html += "<td class='artists'>" + html_links(element["artists"]) + "</td>"
# html += "<td class='title'>" + html_link(element) + "</td>"
html += "<td class='title'>" + html_links(element["artists"]) + " " + html_link(element) + "</td>"
else:
# artist
html += "<td class='artist'>" + html_link(element)