summaryrefslogtreecommitdiff
path: root/app/views/assets/new.html.erb
blob: 366488f4b317831a54c193efbc0b1504b2bb3eea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<h1>New asset</h1>

<% form_for(@asset, :html => { :multipart => true }) do |f| %>
  <%= f.error_messages %>
  
  <p>
    <%= f.label :name %><br />
    <%= f.text_field :name %>
  </p>

  <p>
    <%= f.file_field :upload %>
    <%= f.submit 'Create' %>
  </p>
<% end %>

<%= link_to 'Back', assets_path %>