drhenner/ror_ecommerce

View on GitHub
app/views/admin/merchandise/brands/new.html.erb

Summary

Maintainability
Test Coverage
<%= render partial: '/admin/merchandise/sub_header'%>

<h3>New Brand</h3>

<%= form_for(@brand, :url => admin_merchandise_brands_path(@brand)) do |f| %>
  <%= render partial: 'form', locals: { f: f } %>
  <%= f.submit 'Create', class: 'button' %>
<% end %>

<p>
  <%= link_to 'Back to List', admin_merchandise_brands_path, class: 'button' %>
</p>