2015-11-16 10:22:46 +05:30
|
|
|
{{template "base/head" .}}
|
|
|
|
<div class="repository release">
|
2015-12-08 04:00:52 +05:30
|
|
|
{{template "repo/header" .}}
|
|
|
|
<div class="ui container">
|
|
|
|
{{template "base/alert" .}}
|
|
|
|
<h2 class="ui header">
|
|
|
|
{{.i18n.Tr "repo.release.releases"}}
|
2016-03-06 07:15:23 +05:30
|
|
|
{{if .IsRepositoryWriter}}
|
2015-12-08 04:00:52 +05:30
|
|
|
<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 07:15:23 +05:30
|
|
|
{{if $.IsRepositoryWriter}}<small>(<a href="{{$.RepoLink}}/releases/edit/{{.TagName}}" rel="nofollow">{{$.i18n.Tr "repo.release.edit"}}</a>)</small>{{end}}
|
2015-12-08 04:00:52 +05:30
|
|
|
</h3>
|
|
|
|
<p class="text grey">
|
|
|
|
<span class="author">
|
2016-08-06 00:42:54 +05:30
|
|
|
<img class="img-10" src="{{.Publisher.RelAvatarLink}}">
|
2015-12-08 04:00:52 +05:30
|
|
|
<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 10:15:13 +05:30
|
|
|
<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-08 04:00:52 +05:30
|
|
|
</li>
|
|
|
|
<li>
|
2016-07-16 10:15:13 +05:30
|
|
|
<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-08 04:00:52 +05:30
|
|
|
</li>
|
2017-01-15 20:27:00 +05:30
|
|
|
{{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-08 04:00:52 +05:30
|
|
|
</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 16:23:29 +05:30
|
|
|
{{template "base/paginate" .}}
|
2015-12-08 04:00:52 +05:30
|
|
|
</div>
|
2014-04-02 22:13:31 +05:30
|
|
|
</div>
|
2015-12-08 04:00:52 +05:30
|
|
|
{{template "base/footer" .}}
|