Old high school files. Lessson notes/codes/projects etc.
hsf/wesweb01/crud-music-2020/views/albums/edit.slim

7 lines
325 B

form.page action="/albums/#{album['AlbumId']}/update" method="post"
span Album Title
3 years ago
input type="text" name="new_title" value="#{album['Title']}" placeholder="Album title"
span Artist ID
3 years ago
input type="number" name="new_artistid" value="#{album['ArtistId']}" placeholder="Artist ID"
input type="submit" value="Update"