sellers.rhtml 789 Bytes
<h2>
<% if @product_category %>
  <% if params[:lat] && params[:long] && params[:radius] %>
    <%= _('Listing sellers of %s witin %s km from %s %s') % [@product_category.name, params[:radius], params[:lat], params[:long]] %>
  <% else %>  
    <%= _('Listing sellers of %s') % @product_category.name %>
  <% end %>
<% else %>
  <% if params[:lat] && params[:long] && params[:radius] %>
    <%= _('Listing sellers witin %s km from %s %s') % [params[:radius], params[:lat], params[:long]] %>
  <% else %>  
    <%= _('Listing sellers') %>
  <% end %>
<% end %>
</h2>

<%= render :partial => 'sellers_form' %>

<div class="search-results-innerbox search-results-type-profile common-profile-list-block %>">
  <ul> <%= render :partial => 'profile', :collection => @enterprises %> </ul>
</div>