cairn/web/templates/pages/repos.html

27 lines
692 B
HTML

{{define "content"}}
<div class="repos-page">
{{if .Repositories}}
<table class="table">
<thead>
<tr>
<th>Name</th>
<th>Owner</th>
<th>Created</th>
</tr>
</thead>
<tbody>
{{range .Repositories}}
<tr>
<td><strong>{{.Name}}</strong></td>
<td>{{.Owner}}</td>
<td>{{timeAgo .CreatedAt}}</td>
</tr>
{{end}}
</tbody>
</table>
{{else}}
<p class="empty-state">No repositories yet. Repositories are created automatically when you upload an artifact.</p>
{{end}}
</div>
{{end}}