2023-03-02 13:24:24 -05:00
|
|
|
<div class="row">
|
|
|
|
<div class="twelve columns">
|
2023-03-03 11:56:55 -05:00
|
|
|
<h1 id="site-header">Stage Manager Dashboard</h1>
|
2023-03-02 13:24:24 -05:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<hr>
|
2023-03-03 11:56:55 -05:00
|
|
|
|
|
|
|
<div class="row">
|
|
|
|
<div class="twelve columns">
|
2023-03-03 15:49:09 -05:00
|
|
|
<table class="u-full-width">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>Video name</th>
|
|
|
|
<th>Video serial</th>
|
|
|
|
<th>Video channel</th>
|
|
|
|
<th>Last updated</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<% videos.each do |v| %>
|
|
|
|
<tr>
|
|
|
|
<td><a href="/video/<%= v.id %>"><%= v.name %></a></td>
|
|
|
|
<td><%= serialize(v.serial) %></td>
|
|
|
|
<td><%= v.channel.name %></td>
|
|
|
|
<td><%= date_format(v.updated_at) %></td>
|
|
|
|
</tr>
|
|
|
|
<% end %>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
|
2023-03-03 11:56:55 -05:00
|
|
|
<table class="u-full-width">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>Channel name</th>
|
|
|
|
<th>Open projects</th>
|
|
|
|
<th>Total projects</th>
|
2023-03-03 14:19:20 -05:00
|
|
|
<th>Last updated</th>
|
2023-03-03 11:56:55 -05:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<% channels.each do |c| %>
|
|
|
|
<tr>
|
2023-03-03 14:19:20 -05:00
|
|
|
<td><a href="/channel/<%= c.id %>"><%= c.name %></a></td>
|
2023-03-07 11:54:20 -05:00
|
|
|
<td><%= nullable(c.openProjects().length) %></td>
|
2023-03-03 13:05:01 -05:00
|
|
|
<td><%= nullable(c.videos.length) %></td>
|
2023-03-03 14:19:20 -05:00
|
|
|
<td><%= date_format(c.updated_at) %></td>
|
2023-03-03 11:56:55 -05:00
|
|
|
</tr>
|
|
|
|
<% end %>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div>
|