blob: 459ee9d355f62d7fffb99976891c875e156abb28 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<h1 class="text-center"><%=repomans.first.package[:identifier]%></h1>
<table id="sortable" class="table table-bordered table-condensed">
<thead>
<tr>
<th class="width-50">Check Date</th>
<th class="width-5o">Check Result</th>
</tr>
</thead>
<%repomans.each do |repoman|%>
<tr>
<td class="width-50">
<%=Time.at(repoman[:timestamp].to_i).strftime('%Y-%m-%d')%>
</td>
<td class="width-50 <%=repoman[:result]%>">
<a href="/repoman_checks/<%=repoman.package[:sha1]%>/<%=repoman[:timestamp]%>"><%=repoman[:result].camelcase%></a>
</td>
</tr>
<%end%>
</table>
|