aboutsummaryrefslogtreecommitdiff
blob: bc26cd81f55a7b7c552eb3d78ecc4bd58db64ba2 (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_logs/<%=repoman.package[:sha1]%>/<%=repoman[:timestamp]%>"><%=repoman[:result].camelcase%></a>
		</td>
	</tr>
	<%end%>
</table>