Advertisement
Guest User

Untitled

a guest
Oct 28th, 2015
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
E 0.49 KB | None | 0 0
  1. <h2>Ships</h2>
  2. <table class="table table-striped table-hover">
  3.   <tbody>
  4.     <%= for ship <- @ships do %>
  5.         <tr onclick="window.document.location='<%= ship_path(@conn, :html_ship_info, ship.name) %>'">
  6.           <td><%= ship.name %></td>
  7.           <td><%= ship.armor %></td>
  8.           <td><%= ship.class  %></td>
  9.           <td><%= ship.subclass  %></td>
  10.           <td><%= tag(:img, src: ship.icon_uri, class: "table-image")  %></td>
  11.         </tr>
  12.     <% end %>
  13.   </tbody>
  14. </table>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement