<%= channel.name %>

Item added at: <%= date_format(channel.created_at) %>

<% if channel.updated_at %>

Last updated at: <%= date_format(channel.updated_at) %>

<% end %>

Create video project

<%= channel.description %>


Recently updated channel videos:

<% if channel.videos.length > 0 %> <% channel_videos.each do |v| %> <% end %>
Video name Video serial Video description Last updated
<%= v.name %> <%= serialize(v.serial) %> <%= v.description %> <%= date_format(v.updated_at) %>
<% else %>

There are no videos associated with this project yet.

<% end %>