Guest User

Movies#index

a guest
Jan 26th, 2017
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Rails 0.33 KB | None | 0 0
  1. <h1 class="title">Movies</h1>
  2.  
  3. <table id="movies">
  4.   <thead>
  5.     <tr>
  6.       <th>Title</th>
  7.       <th>Release</th>
  8.     </tr>
  9.   </thead>
  10.   <tbody>
  11.     <% @movies.each do |movie| %>
  12.       <tr>
  13.         <td><%= movie.title %></td>
  14.         <td><%= movie.release_date %></td>
  15.       </tr>
  16.     <% end %>
  17.   </tbody>
  18. </table>
Add Comment
Please, Sign In to add comment