This commit is contained in:
Laptop
2024-10-06 15:49:41 +03:00
parent 5df0ede751
commit 7716506bb9
2 changed files with 4 additions and 0 deletions

View File

@@ -79,6 +79,9 @@ templ Track(t sc.Track, stream string) {
<p>{ strconv.FormatInt(t.Played, 10) } plays</p>
<p>Created: { t.CreatedAt }</p>
<p>Last modified: { t.LastModified }</p>
if t.License != "" {
<p>License: { t.License }</p>
}
if t.TagList != "" {
<p>Tags: { strings.Join(sc.TagListParser(t.TagList), ", ") }</p>
}