58 lines
1.3 KiB
Plaintext
58 lines
1.3 KiB
Plaintext
<div class="row">
|
|
<div class="twelve columns">
|
|
<h1 id="site-header">Welcome to Raven</h1>
|
|
</div>
|
|
</div>
|
|
|
|
<hr>
|
|
|
|
<div class="row">
|
|
<div class="six columns">
|
|
<h3>Recent inventory updates</h3>
|
|
<% if items.length > 0 %>
|
|
<table class="u-full-width">
|
|
<thead>
|
|
<tr>
|
|
<th>Item name</th>
|
|
<th>Updated at</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<% items.each do |item| %>
|
|
<tr>
|
|
<td><%= item.name %></td>
|
|
<td><%= date_format(item.updated_at) %></td>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
<% else %>
|
|
<p>There are no items to display.</p>
|
|
<% end %>
|
|
</div>
|
|
|
|
<div class="six columns">
|
|
<h3>Recent license updates</h3>
|
|
<% if licenses.length > 0 %>
|
|
<table class="u-full-width">
|
|
<thead>
|
|
<tr>
|
|
<th>License name</th>
|
|
<th>Updated at</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<% licenses.each do |license| %>
|
|
<tr>
|
|
<td><%= license.name %></td>
|
|
<td><%= date_format(license.updated_at) %></td>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
<% else %>
|
|
<p>There are no licenses to display.</p>
|
|
<% end %>
|
|
</div>
|
|
</div>
|