<% if is_vendor? %>
Vendors can view but cannot make purchases. <% if @product.vendor == current_user %> <%= link_to 'Click this link for vendor product view', vendor_product_path(@product) %>. <%end%>
<% end %> <% if @product.allow_purchase? == false %> <%end%>
<%= render partial: 'product', object: @product %>

<% feedback_count = @product.vendor_feedbacks.count %> <%= link_to "Feedback (#{feedback_count})", feedbacks_path(product_id: @product.id), class: 'btn btn-default' %>

<% if @product.allow_purchase? == false || is_vendor? %> <%= link_to 'Purchase', new_order_path(product: @product.id), class: 'btn btn-primary form-button disabled' %> <%else%> <%= link_to 'Purchase', new_order_path(product: @product.id), class: 'btn btn-primary form-button' %> <%end%>