20 lines
423 B
Plaintext
20 lines
423 B
Plaintext
-# This file is app/views/movies/index.html.haml
|
|
%h1 All Movies
|
|
|
|
%table#movies
|
|
%thead
|
|
%tr
|
|
%th Movie Title
|
|
%th Rating
|
|
%th Release Date
|
|
%th More Info
|
|
%tbody
|
|
- @movies.each do |movie|
|
|
%tr
|
|
%td= movie.title
|
|
%td= movie.rating
|
|
%td= movie.release_date
|
|
%td= link_to "More about #{movie.title}", movie_path(movie)
|
|
|
|
= link_to 'Add new movie', new_movie_path
|