Supplier Info: <%= supplier.title %>
- Company name: <%= supplier.title %>
- Vendor page: <%= link_to supplier.title, supplier_path(supplier) %>
- Description: <%= supplier.notes %>
- Phone: <%= supplier.phone %>
- Address1: <%= supplier.address1 %>
- Town: <%= supplier.town %>
- State:<%= State.find_by_id(supplier.state).name %>
- Zip-code:<%= supplier.zip_code %>
- Fax:<%= supplier.fax %>
- Email:<%= supplier.email %>
- Facebook:<%= supplier.facebook %>
- Twitter:<%= supplier.twitter %>
- Website:<%= supplier.website %>
- Product Solds:<%= supplier.products_sold %>
Proprietor Info
- Owner Name:<%= supplier.name %>
- Owner Description:<%= supplier.description2 %>
<%= render :partial => "shared/hours", :locals => {:supplier => @supplier} %>
Images
<% supplier.images.each do |image| %>
- <%= sized_image(image, '100x100#')%>
<% if image.logo == true %>
- This image is the current logo
<% end %>
<% if image.featured == true %>
- This image is currently featured
<% end %>
<% end %>