summaryrefslogtreecommitdiff
path: root/app/views/assets/new.html.erb
blob: 6c1310a7e1157f571a33a5f8701ad161853690b9 (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| %>
  <%= form_error_messages(f) %>
  
  <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 %>