stage-manager/views/index.erb

80 lines
2.0 KiB
Plaintext
Raw Normal View History

<div class="row">
<div class="twelve columns">
<h1 id="site-header">Stage Manager Dashboard</h1>
</div>
</div>
<hr>
<div class="row">
<div class="twelve columns">
<h3>Active projects:</h3>
<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>
<% active_projects.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>
<hr>
<h3>Recently updated videos:</h3>
<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>
<h3>Recently updated channels:</h3>
<table class="u-full-width">
<thead>
<tr>
<th>Channel name</th>
<th>Open projects</th>
<th>Total projects</th>
<th>Last updated</th>
</tr>
</thead>
<tbody>
<% channels.each do |c| %>
<tr>
<td><a href="/channel/<%= c.id %>"><%= c.name %></a></td>
2023-03-07 11:54:20 -05:00
<td><%= nullable(c.openProjects().length) %></td>
<td><%= nullable(c.videos.length) %></td>
<td><%= date_format(c.updated_at) %></td>
</tr>
<% end %>
</tbody>
</table>
</div>
</div>