Updated navbar styles a bit; started work on dashboard
This commit is contained in:
@ -1,7 +1,32 @@
|
||||
<div class="row">
|
||||
<div class="twelve columns">
|
||||
<h1 id="site-header">Welcome to Stage Manager</h1>
|
||||
<h1 id="site-header">Stage Manager Dashboard</h1>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<hr>
|
||||
|
||||
<div class="row">
|
||||
<div class="twelve columns">
|
||||
<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><%= c[:name] %></td>
|
||||
<td><%= c[:openProjects] %></td>
|
||||
<td><%= c[:totalProjects] %></td>
|
||||
<td><%= c[:last_updated] %></td>
|
||||
</tr>
|
||||
<% end %>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
|
Reference in New Issue
Block a user