This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<form accept-charset="UTF-8" action="#" class="search_aside" id="advanced_search" method="post"> | |
<div class="row"> | |
<select id="practice_area" name="advanced_search[law_area_id]"> | |
<option value="">Select Area of Practice</option> | |
<option value="14">Admiralty & Maritime Law</option> | |
<option value="24">Banking and Finance Law</option> | |
</select> | |
</div> | |
<div class="row"> | |
<select id="advanced_search_country_id" name="advanced_search[country_id]"><option value="">Select Country</option> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="product_list" > | |
<h1>Listing products</h1> | |
<table> | |
<% @products.each do |product| %> | |
<tr class="<%= cycle('list_line_odd' , 'list_line_even' ) %>" > | |
<td> | |
<%= image_tag(product.image_url, :class => 'list_image' ) %> | |
</td> | |
<td class="list_description" > |
NewerOlder