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:
parent
1eee88482c
commit
65afef8489
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user