Sha256: c271a734186a0697437e1bf38e6c71a5ebfac923bee5e71952866c79d5ff5b10

Contents?: true

Size: 840 Bytes

Versions: 4

Compression:

Stored size: 840 Bytes

Contents

<h1> Previously recorded videos </h1>

<% if !@videos.empty? %>
	<% @videos.each do |video|%>
	
		<div class="framey_video_profile">
			<span class="framey_video_thumbnail">
			<a href="<%= framey_video_path(video.name)%>">	
			<%= image_tag video.medium_thumbnail_url%>
			</a>
			</span>
			<span class="framey_video_info">
				<div class="framey_video_name">
					Name: <a href="<%= framey_video_path(video.name)%>"><%= video.name %></a>
				</div>
				<div class="framey_video_duration">
					Length: <%= video.duration %> seconds
				</div>
				<div class="framey_video_filesize">
					Filesize: <%= video.filesize / 1024 %> KB
				</div>
				<div class="framey_video_date">
					Created at: <%= video.created_at %>
				</div>								
			</span>
		</div>
		<hr/>


	<%end%>
<% else %>
	<h3>No videos were recorded, yet </h3>
<% end %>

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
framey-1.2.7 lib/rails/generators/framey/templates/index.html.erb
framey-1.2.5 lib/rails/generators/framey/templates/index.html.erb
framey-1.2.4 lib/rails/generators/framey/templates/index.html.erb
framey-1.2.3 lib/rails/generators/framey/templates/index.html.erb