Added Sequel migrations and models for videos and channels; Fixed database name in Rakefile and defaults config file
This commit is contained in:
@ -20,10 +20,10 @@
|
||||
<tbody>
|
||||
<% channels.each do |c| %>
|
||||
<tr>
|
||||
<td><%= c[:name] %></td>
|
||||
<td><%= c[:openProjects] %></td>
|
||||
<td><%= c[:totalProjects] %></td>
|
||||
<td><%= c[:last_updated] %></td>
|
||||
<td><%= c.name %></td>
|
||||
<td><%= nullable(c.openProjects) %></td>
|
||||
<td><%= nullable(c.videos.length) %></td>
|
||||
<td><%= date_format(c.last_updated) %></td>
|
||||
</tr>
|
||||
<% end %>
|
||||
</tbody>
|
||||
|
Reference in New Issue
Block a user