ensl.org/app/views/movies/show.html.erb

19 lines
666 B
Text
Raw Normal View History

2014-04-26 21:28:06 +00:00
<div class="movie-full">
2020-03-22 17:47:24 +00:00
<h1 class="fancy">
<span><%= namelink @movie %></span>
</h1>
2014-04-26 21:28:06 +00:00
2020-03-22 17:47:24 +00:00
<%= render partial: "movie", object: @movie %>
2020-03-22 17:47:24 +00:00
<% if @movie.preview_url %>
2014-04-26 21:28:06 +00:00
<div class="player">
2020-03-22 17:47:24 +00:00
<video src="<%= @movie.preview.url %>" controls></video>
2014-04-26 21:28:06 +00:00
2020-03-22 17:47:24 +00:00
<p>This is a preview version and video quality may not be full. For best experince please download the movie and use eg. <a href="https://www.videolan.org/vlc/">VLC</a></p>
</div>
2020-03-22 17:47:24 +00:00
<% else %>
<p>There is no preview available. Please download the movie and use eg. <a href="https://www.videolan.org/vlc/">VLC</a></p>
<% end %>
</div>
2020-03-22 17:47:24 +00:00
<%= add_comments @movie.file %>