New Asset
<% form_for @asset, :html => {:multipart => true} do |form| %>
<%= form.label :name, "Name" %>
<%= form.text_field :name %>
<%= form.label :file, "File" %>
<%= form.file_field :file %>
<%= submit_tag 'Upload Asset' %>
<% end %>
<%= link_to "Back to assets", slightcms_assets_path %>