drhenner/ror_ecommerce

View on GitHub
app/views/admin/merchandise/product_types/index.html.erb

Summary

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

<% content_for :sidemenu do %>

  <div class='admin_filters'>
    <%= form_tag admin_merchandise_product_types_path, method: 'get', id: "product_types_search" do %>
      <%= hidden_field_tag :direction, params[:direction] %>
      <%= hidden_field_tag :sort, params[:sort] %>

      <label>Name</label>
      <%= text_field_tag :name, params[:name] %>
      <div style='text-align:center'>
        <%= submit_tag "Search", name: nil, class: 'button red-button' %>
      </div>
    <% end %>
    <div class='clearfix'></div>
  </div>
<% end %>

<div class='admin_title_header'>
  <h3>Product Types</h3>
  <%= link_to "New Type", new_admin_merchandise_product_type_path, class: "button" %>
</div>

<div class="admin_product_types">
  <table class='hover'>
    <thead>
    <tr class='odd'>
      <th class='column1_header' ><%= sortable "name" %></th>
    </tr>
    </thead>
    <% @product_types.each do |product_type| %>
      <tr class='<%= cycle("odd", "")%>'>
        <td><%= link_to product_type.name, edit_admin_merchandise_product_type_path(product_type) %></td>
      </tr>
    <% end %>
  </table>

  <%= will_paginate @product_types %>
</div>