scube-server/app/views/tracks/new.html.haml
2014-04-01 10:48:18 +00:00

13 lines
262 B
Plaintext

= form_for @track, html: { multipart: true } do |t|
%table
%tbody
%tr
%th= t.label :name
%td= t.text_field :name
%tr
%th= t.label :file
%td= t.file_field :file
%tfoot
%tr
%td= t.submit 'Upload'