mirror of
https://github.com/glanceapp/glance.git
synced 2024-11-26 02:14:47 +01:00
36f8eac3e4
Delay showing page content until JS has finished setting up page elements That then allows the following: Leave relative time to be rendered on the client Leave collapsible lists to be rendered on the client Which massively simplfies the backend templates which were error prone
45 lines
2.1 KiB
HTML
45 lines
2.1 KiB
HTML
{{ template "widget-base.html" . }}
|
|
|
|
{{ define "widget-content" }}
|
|
<a class="size-h4 color-highlight" href="https://github.com/{{ $.RepositoryDetails.Name }}" target="_blank" rel="noreferrer">{{ .RepositoryDetails.Name }}</a>
|
|
<ul class="list-horizontal-text">
|
|
<li>{{ .RepositoryDetails.Stars | formatNumber }} stars</li>
|
|
<li>{{ .RepositoryDetails.Forks | formatNumber }} forks</li>
|
|
</ul>
|
|
|
|
{{ if gt (len .RepositoryDetails.PullRequests) 0 }}
|
|
<hr class="margin-block-10">
|
|
<a class="text-compact" href="https://github.com/{{ $.RepositoryDetails.Name }}/pulls" target="_blank" rel="noreferrer">Open pull requests ({{ .RepositoryDetails.OpenPullRequests | formatNumber }} total)</a>
|
|
<div class="flex gap-7 size-h5 margin-top-3">
|
|
<ul class="list list-gap-2">
|
|
{{ range .RepositoryDetails.PullRequests }}
|
|
<li {{ dynamicRelativeTimeAttrs .CreatedAt }}></li>
|
|
{{ end }}
|
|
</ul>
|
|
<ul class="list list-gap-2 min-width-0">
|
|
{{ range .RepositoryDetails.PullRequests }}
|
|
<li><a class="color-primary-if-not-visited text-truncate block" title="{{ .Title }}" target="_blank" rel="noreferrer" href="https://github.com/{{ $.RepositoryDetails.Name }}/pull/{{ .Number }}">{{ .Title }}</a></li>
|
|
{{ end }}
|
|
</ul>
|
|
</div>
|
|
{{ end }}
|
|
|
|
{{ if gt (len .RepositoryDetails.Issues) 0 }}
|
|
<hr class="margin-block-10">
|
|
<a class="text-compact" href="https://github.com/{{ $.RepositoryDetails.Name }}/issues" target="_blank" rel="noreferrer">Open issues ({{ .RepositoryDetails.OpenIssues | formatNumber }} total)</a>
|
|
<div class="flex gap-7 size-h5 margin-top-3">
|
|
<ul class="list list-gap-2">
|
|
{{ range .RepositoryDetails.Issues }}
|
|
<li {{ dynamicRelativeTimeAttrs .CreatedAt }}></li>
|
|
{{ end }}
|
|
</ul>
|
|
<ul class="list list-gap-2 min-width-0">
|
|
{{ range .RepositoryDetails.Issues }}
|
|
<li><a class="color-primary-if-not-visited text-truncate block" title="{{ .Title }}" target="_blank" rel="noreferrer" href="https://github.com/{{ $.RepositoryDetails.Name }}/issues/{{ .Number }}">{{ .Title }}</a></li>
|
|
{{ end }}
|
|
</ul>
|
|
</div>
|
|
{{ end }}
|
|
|
|
{{ end }}
|