Responsive on small screens
This commit is contained in:
@@ -9,24 +9,26 @@
|
||||
<%- include("navigation", locals) %>
|
||||
<div class="content">
|
||||
<h1>Build history</h1>
|
||||
<table>
|
||||
<tr>
|
||||
<th>Repo</th>
|
||||
<th>Distro</th>
|
||||
<th>Date Started</th>
|
||||
<th>Build Duration</th>
|
||||
<th>Build Status</th>
|
||||
</tr>
|
||||
<% builds.forEach(build => { %>
|
||||
<div class="overflow-x">
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="/build/<%= build.id %>"><%= build.repo %></a></td>
|
||||
<td><%= build.distro %></td>
|
||||
<td class="to-local-time"><%= build.startTime %></td>
|
||||
<td><%= timeElapsed(build.startTime, build.endTime) %></td>
|
||||
<td><%= build.status %></td>
|
||||
<th>Repo</th>
|
||||
<th>Distro</th>
|
||||
<th>Date Started</th>
|
||||
<th>Build Duration</th>
|
||||
<th>Build Status</th>
|
||||
</tr>
|
||||
<% }) %>
|
||||
</table>
|
||||
<% builds.forEach(build => { %>
|
||||
<tr>
|
||||
<td><a href="/build/<%= build.id %>"><%= build.repo %></a></td>
|
||||
<td><%= build.distro %></td>
|
||||
<td class="to-local-time"><%= build.startTime %></td>
|
||||
<td><%= timeElapsed(build.startTime, build.endTime) %></td>
|
||||
<td><%= build.status %></td>
|
||||
</tr>
|
||||
<% }) %>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
<%- include("footer", locals) %>
|
||||
<script src="/assets/js/timezone.js?v1" nonce="<%= cspNonce %>"></script>
|
||||
|
Reference in New Issue
Block a user