Advertisement
Guest User

Untitled

a guest
Jan 30th, 2017
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.70 KB | None | 0 0
  1. <h1 class="title">
  2.   <%= @movie.title %>
  3. </h1>
  4.  
  5. <% if user_signed_in? %>
  6.   <% classification = @movie.classifications.where(user_id: current_user.id).first %>
  7.   <% if classification %>
  8.     <h4>
  9.       Your Score: <%= classification.score %>
  10.     </h4>
  11.   <% else %>
  12.     <%= form_for Classification.new, url: "/movies/#{@movie.id}/classifications" do |f| %>
  13.       <div class="field">
  14.         <%= f.label :score %>
  15.         <%= f.text_field :score %>
  16.       </div>
  17.       <%= submit_tag "Set score", :id => "submit" %>
  18.     <% end %>
  19.   <% end %>
  20. <% end %>
  21.  
  22.  
  23. <p>
  24.   <strong>Release date:</strong>
  25.   <%= @movie.release_date %>
  26. </p>
  27.  
  28. <p>
  29.   <strong>Description:</strong>
  30.   <%= @movie.description %>
  31. </p>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement