Created
February 5, 2013 05:44
-
-
Save mb-dev/4712492 to your computer and use it in GitHub Desktop.
Master Detail Page - View
This file contains hidden or 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 class="container"> | |
| <div class="header"> | |
| Header - <a href="/products/">Product List</a> | |
| </div> | |
| <div id="product_details" style="display: none"> | |
| <% if @product.present? %> | |
| <%= render file: 'products/product' %> | |
| <% end %> | |
| </div> | |
| <ul class="products" id="product_list" style="display: none"> | |
| <% @products.each do |product| %> | |
| <li> | |
| <a href="/products/<%=product.id%>"> | |
| <img src="<%= product.image_url%>"/> | |
| <div> | |
| <%= product.name %> | |
| </div> | |
| </a> | |
| </li> | |
| <% end %> | |
| </ul> | |
| </div> | |
| <script type="text/javascript"> | |
| $(document).ready(function() { | |
| window.app = new ProductRouter(); | |
| }); | |
| </script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment