<% 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%>