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