2015-11-16 05:52:46 +01:00
|
|
|
{{template "base/head" .}}
|
|
|
|
<div class="repository release">
|
2015-12-07 23:30:52 +01:00
|
|
|
{{template "repo/header" .}}
|
|
|
|
<div class="ui container">
|
|
|
|
{{template "base/alert" .}}
|
|
|
|
<h2 class="ui header">
|
|
|
|
{{.i18n.Tr "repo.release.releases"}}
|
2016-03-06 02:45:23 +01:00
|
|
|
{{if .IsRepositoryWriter}}
|
2015-12-07 23:30:52 +01:00
|
|
|
<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 label">{{$.i18n.Tr "repo.release.draft"}}</span>
|
|
|
|
{{else if .IsPrerelease}}
|
|
|
|
<span class="ui orange label">{{$.i18n.Tr "repo.release.prerelease"}}</span>
|
|
|
|
{{else}}
|
|
|
|
<span class="ui green label">{{$.i18n.Tr "repo.release.stable"}}</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> {{ShortSha .Sha1}}</a>
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
<div class="ui twelve wide column detail">
|
|
|
|
{{if .PublisherID}}
|
|
|
|
<h3>
|
|
|
|
<a href="{{$.RepoLink}}/src/{{.TagName}}">{{.Title}}</a>
|
2016-03-06 02:45:23 +01:00
|
|
|
{{if $.IsRepositoryWriter}}<small>(<a href="{{$.RepoLink}}/releases/edit/{{.TagName}}" rel="nofollow">{{$.i18n.Tr "repo.release.edit"}}</a>)</small>{{end}}
|
2015-12-07 23:30:52 +01:00
|
|
|
</h3>
|
|
|
|
<p class="text grey">
|
|
|
|
<span class="author">
|
2016-08-05 21:12:54 +02:00
|
|
|
<img class="img-10" src="{{.Publisher.RelAvatarLink}}">
|
2015-12-07 23:30:52 +01:00
|
|
|
<a href="{{AppSubUrl}}/{{.Publisher.Name}}">{{.Publisher.Name}}</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">
|
|
|
|
<li>
|
2016-07-16 06:45:13 +02:00
|
|
|
<a href="{{$.RepoLink}}/archive/{{.TagName}}.zip" rel="nofollow"><i class="octicon octicon-file-zip"></i> {{$.i18n.Tr "repo.release.source_code"}} (ZIP)</a>
|
2015-12-07 23:30:52 +01:00
|
|
|
</li>
|
|
|
|
<li>
|
2016-07-16 06:45:13 +02:00
|
|
|
<a href="{{$.RepoLink}}/archive/{{.TagName}}.tar.gz"><i class="octicon octicon-file-zip"></i> {{$.i18n.Tr "repo.release.source_code"}} (TAR.GZ)</a>
|
2015-12-07 23:30:52 +01:00
|
|
|
</li>
|
2017-01-15 15:57:00 +01:00
|
|
|
{{if .Attachments}}
|
|
|
|
{{range .Attachments}}
|
|
|
|
<li>
|
|
|
|
<a target="_blank" rel="noopener" href="{{AppSubUrl}}/attachments/{{.UUID}}">
|
|
|
|
<span class="ui image octicon octicon-desktop-download" title='{{.Name}}'></span> {{.Name}}
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
{{end}}
|
|
|
|
{{end}}
|
2015-12-07 23:30:52 +01:00
|
|
|
</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>
|
2016-11-10 11:53:29 +01:00
|
|
|
{{template "base/paginate" .}}
|
2015-12-07 23:30:52 +01:00
|
|
|
</div>
|
2014-04-02 18:43:31 +02:00
|
|
|
</div>
|
2015-12-07 23:30:52 +01:00
|
|
|
{{template "base/footer" .}}
|