Fixed markup.

This commit is contained in:
Martin Edenhofer 2012-12-27 21:21:23 +01:00
parent 07c8b79721
commit 7b629e48e6

View file

@ -14,17 +14,21 @@
<div class="span9">
<table class="table table-striped table-hover">
<thead>
<th><%- @T('Name') %></th>
<th><%- @T('Version') %></th>
<th><%- @T('Vendor') %></th>
<th><%- @T('Action') %></th>
<tr>
<th><%- @T('Name') %></th>
<th><%- @T('Version') %></th>
<th><%- @T('Vendor') %></th>
<th><%- @T('Action') %></th>
</tr>
</thead>
<tbody>
<% for item in @packages: %>
<tr><%= item.name %></tr>
<tr><%= item.version %></tr>
<tr><a href="<%- item.url %>" target="_blank"><%= item.vendor %></a></tr>
<tr>-</tr>
<tr>
<td><%= item.name %></td>
<td><%= item.version %></td>
<td><a href="<%- item.url %>" target="_blank"><%= item.vendor %></a></td>
<td>-</td>
</tr>
<% end %>
</tbody>
</table>