mirror of https://github.com/gogits/gogs.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
93 lines
3.7 KiB
93 lines
3.7 KiB
{{template "base/head" .}} |
|
<div class="repository release"> |
|
{{template "repo/header" .}} |
|
<div class="ui container"> |
|
{{template "base/alert" .}} |
|
<h2 class="ui header"> |
|
{{.i18n.Tr "repo.release.releases"}} |
|
{{if and .IsRepositoryWriter (not .Repository.IsMirror)}} |
|
<div class="ui right"> |
|
<a class="ui small green button" href="{{$.RepoLink}}/releases/new"> |
|
{{.i18n.Tr "repo.release.new_release"}} |
|
</a> |
|
</div> |
|
{{end}} |
|
</h2> |
|
<ul id="release-list"> |
|
{{range .Releases}} |
|
<li class="ui grid"> |
|
<div class="ui four wide column meta"> |
|
{{if .PublisherID}} |
|
{{if .IsDraft}} |
|
<span class="ui yellow basic label">{{$.i18n.Tr "repo.release.draft"}}</span> |
|
{{else if .IsPrerelease}} |
|
<span class="ui orange basic label">{{$.i18n.Tr "repo.release.prerelease"}}</span> |
|
{{end}} |
|
<span class="tag text blue"> |
|
<a href="{{$.RepoLink}}/src/{{.TagName}}" rel="nofollow"><i class="tag icon"></i> {{.TagName}}</a> |
|
</span> |
|
{{end}} |
|
<span class="commit"> |
|
<a href="{{$.RepoLink}}/src/{{.Sha1}}" rel="nofollow"><i class="code icon"></i> {{ShortSHA1 .Sha1}}</a> |
|
</span> |
|
</div> |
|
<div class="ui twelve wide column detail"> |
|
{{if .PublisherID}} |
|
<h3> |
|
<a href="{{$.RepoLink}}/src/{{.TagName}}">{{.Title}}</a> |
|
{{if $.IsRepositoryWriter}}<small>(<a href="{{$.RepoLink}}/releases/edit/{{.TagName}}" rel="nofollow">{{$.i18n.Tr "repo.release.edit"}}</a>)</small>{{end}} |
|
</h3> |
|
<p class="text grey"> |
|
<span class="author"> |
|
<img class="img-10" src="{{.Publisher.RelAvatarLink}}"> |
|
<a href="{{AppSubURL}}/{{.Publisher.Name}}">{{.Publisher.DisplayName}}</a> |
|
</span> |
|
{{if .Created}}<span class="time">{{TimeSince .Created $.Lang}}</span>{{end}} |
|
<span class="ahead">{{$.i18n.Tr "repo.release.ahead" .NumCommitsBehind .Target | Str2html}}</span> |
|
</p> |
|
<div class="markdown desc"> |
|
{{Str2html .Note}} |
|
</div> |
|
<div class="download"> |
|
<h2>{{$.i18n.Tr "repo.release.downloads"}}</h2> |
|
<ul class="list"> |
|
{{range .Attachments}} |
|
<li> |
|
<i class="octicon octicon-package"></i> <a href="{{AppSubURL}}/attachments/{{.UUID}}" rel="nofollow">{{.Name}}</a> |
|
</li> |
|
{{end}} |
|
{{if not .IsDraft}} |
|
<li> |
|
<i class="octicon octicon-file-zip"></i> <a href="{{$.RepoLink}}/archive/{{.TagName}}.zip" rel="nofollow">{{$.i18n.Tr "repo.release.source_code"}} (ZIP)</a> |
|
</li> |
|
<li> |
|
<i class="octicon octicon-file-zip"></i> <a href="{{$.RepoLink}}/archive/{{.TagName}}.tar.gz">{{$.i18n.Tr "repo.release.source_code"}} (TAR.GZ)</a> |
|
</li> |
|
{{end}} |
|
</ul> |
|
</div> |
|
{{else}} |
|
<h4> |
|
<a href="{{$.RepoLink}}/src/{{.TagName}}" rel="nofollow"><i class="tag icon"></i> {{.TagName}}</a> |
|
</h4> |
|
<div class="download"> |
|
<a href="{{$.RepoLink}}/archive/{{.TagName}}.zip" rel="nofollow"><i class="octicon octicon-file-zip"></i>ZIP</a> |
|
<a href="{{$.RepoLink}}/archive/{{.TagName}}.tar.gz"><i class="octicon octicon-file-zip"></i>TAR.GZ</a> |
|
</div> |
|
{{end}} |
|
<span class="dot"> </span> |
|
</div> |
|
</li> |
|
{{end}} |
|
</ul> |
|
<div class="center"> |
|
<a class="ui small button {{if not .HasPrevious}}disabled{{end}}" {{if .HasPrevious}}href="{{$.Link}}?after={{.PreviousAfter}}"{{end}}> |
|
{{$.i18n.Tr "repo.issues.previous"}} |
|
</a> |
|
<a class="ui small button {{if .ReachEnd}}disabled{{end}}" {{if not .ReachEnd}}href="{{$.Link}}?after={{.NextAfter}}"{{end}}> |
|
{{$.i18n.Tr "repo.issues.next"}} |
|
</a> |
|
</div> |
|
</div> |
|
</div> |
|
{{template "base/footer" .}}
|
|
|