68 lines
2.2 KiB
HTML
68 lines
2.2 KiB
HTML
{{define "content"}}
|
|
<div class="crashgroup-detail">
|
|
<div class="detail-header">
|
|
<span class="badge badge-status-{{.Group.Status}}">{{.Group.Status}}</span>
|
|
<span class="detail-repo">{{.Group.RepoName}}</span>
|
|
</div>
|
|
|
|
<h3 class="crashgroup-title">{{.Group.Title}}</h3>
|
|
|
|
<div class="detail-grid">
|
|
<div class="detail-item">
|
|
<label>Fingerprint</label>
|
|
<code>{{shortSHA .Group.Fingerprint}}</code>
|
|
</div>
|
|
<div class="detail-item">
|
|
<label>Occurrences</label>
|
|
<span>{{.Group.OccurrenceCount}}</span>
|
|
</div>
|
|
<div class="detail-item">
|
|
<label>First Seen</label>
|
|
<span>{{timeAgo .Group.FirstSeenAt}}</span>
|
|
</div>
|
|
<div class="detail-item">
|
|
<label>Last Seen</label>
|
|
<span>{{timeAgo .Group.LastSeenAt}}</span>
|
|
</div>
|
|
{{if .Group.ForgejoIssueURL}}
|
|
<div class="detail-item">
|
|
<label>Forgejo Issue</label>
|
|
<a href="{{deref .Group.ForgejoIssueURL}}" class="btn btn-sm">View Issue</a>
|
|
</div>
|
|
{{end}}
|
|
</div>
|
|
|
|
<section class="section">
|
|
<h3>Related Artifacts</h3>
|
|
{{if .Artifacts}}
|
|
<table class="table">
|
|
<thead>
|
|
<tr>
|
|
<th>Type</th>
|
|
<th>Commit</th>
|
|
<th>Message</th>
|
|
<th>Size</th>
|
|
<th>Created</th>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{{range .Artifacts}}
|
|
<tr>
|
|
<td><span class="badge badge-{{.Type}}">{{.Type}}</span></td>
|
|
<td><code>{{shortSHA .CommitSHA}}</code></td>
|
|
<td>{{if .CrashMessage}}{{truncate (deref .CrashMessage) 60}}{{else}}-{{end}}</td>
|
|
<td>{{formatSize .BlobSize}}</td>
|
|
<td>{{timeAgo .CreatedAt}}</td>
|
|
<td><a href="/artifacts/{{.ID}}" class="btn btn-sm">View</a></td>
|
|
</tr>
|
|
{{end}}
|
|
</tbody>
|
|
</table>
|
|
{{else}}
|
|
<p class="empty-state">No artifacts linked to this crash group yet.</p>
|
|
{{end}}
|
|
</section>
|
|
</div>
|
|
{{end}}
|