reordered track listing of fields

This commit is contained in:
Tangent 2019-06-27 20:20:52 -07:00
parent 36befcb632
commit 46518da13c

View File

@ -30,11 +30,11 @@ class extends Widget
div ->
element "table", ->
tr ->
th "Title"
th "Artist"
th "Title"
th "Album"
th "Genre"
th "Mood"
th "Album"
th "Link"
th "Status"
th "Quality"
@ -48,11 +48,11 @@ class extends Widget
method: "POST"
enctype: "multipart/form-data"
}, ->
td -> input type: "text", name: "title", value: track.title
td -> input type: "text", name: "artist", value: track.artist
td -> input type: "text", name: "title", value: track.title
td -> input type: "text", name: "album", value: track.album
td -> input type: "text", name: "genre", value: track.genre
td -> input type: "text", name: "mood", value: track.mood
td -> input type: "text", name: "album", value: track.album
td ->
if track.link and #track.link > 0
a href: track.link, "*"