Add accordion to release list and compact non-latest (#10910)

Signed-off-by: jolheiser <john.olheiser@gmail.com>
mj
John Olheiser 4 years ago committed by GitHub
parent 2c25e75dca
commit 36d9237e60
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -14,7 +14,7 @@
{{end}} {{end}}
</h2> </h2>
<ul id="release-list"> <ul id="release-list">
{{range $release := .Releases}} {{range $idx, $release := .Releases}}
<li class="ui grid"> <li class="ui grid">
<div class="ui four wide column meta"> <div class="ui four wide column meta">
{{if .IsTag}} {{if .IsTag}}
@ -71,7 +71,12 @@
{{Str2html .Note}} {{Str2html .Note}}
</div> </div>
<div class="download"> <div class="download">
<h2>{{$.i18n.Tr "repo.release.downloads"}}</h2> <div class="ui accordion">
<h2 class="title {{if eq $idx 0}}active{{end}}">
<i class="dropdown icon"></i>
{{$.i18n.Tr "repo.release.downloads"}}
</h2>
<div class="content {{if eq $idx 0}}active{{end}}">
<ul class="list"> <ul class="list">
{{if $.Permission.CanRead $.UnitTypeCode}} {{if $.Permission.CanRead $.UnitTypeCode}}
<li> <li>
@ -94,6 +99,8 @@
{{end}} {{end}}
</ul> </ul>
</div> </div>
</div>
</div>
{{end}} {{end}}
<span class="dot">&nbsp;</span> <span class="dot">&nbsp;</span>
</div> </div>

Loading…
Cancel
Save