Fixed markup.
This commit is contained in:
parent
07c8b79721
commit
7b629e48e6
1 changed files with 12 additions and 8 deletions
|
@ -14,17 +14,21 @@
|
||||||
<div class="span9">
|
<div class="span9">
|
||||||
<table class="table table-striped table-hover">
|
<table class="table table-striped table-hover">
|
||||||
<thead>
|
<thead>
|
||||||
|
<tr>
|
||||||
<th><%- @T('Name') %></th>
|
<th><%- @T('Name') %></th>
|
||||||
<th><%- @T('Version') %></th>
|
<th><%- @T('Version') %></th>
|
||||||
<th><%- @T('Vendor') %></th>
|
<th><%- @T('Vendor') %></th>
|
||||||
<th><%- @T('Action') %></th>
|
<th><%- @T('Action') %></th>
|
||||||
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
<% for item in @packages: %>
|
<% for item in @packages: %>
|
||||||
<tr><%= item.name %></tr>
|
<tr>
|
||||||
<tr><%= item.version %></tr>
|
<td><%= item.name %></td>
|
||||||
<tr><a href="<%- item.url %>" target="_blank"><%= item.vendor %></a></tr>
|
<td><%= item.version %></td>
|
||||||
<tr>-</tr>
|
<td><a href="<%- item.url %>" target="_blank"><%= item.vendor %></a></td>
|
||||||
|
<td>-</td>
|
||||||
|
</tr>
|
||||||
<% end %>
|
<% end %>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
|
Loading…
Reference in a new issue