gitea/templates/repo/issue/view.tmpl

34 lines
1.1 KiB
Cheetah
Raw Normal View History

{{template "base/head" .}}
2015-09-02 01:26:39 +02:00
<div class="repository view issue pull">
{{template "repo/header" .}}
<div class="ui container">
<div class="ui two column stackable grid">
<div class="column">
{{template "repo/issue/navbar" .}}
</div>
2019-01-23 19:58:38 +01:00
{{if not .Repository.IsArchived}}
<div class="column right aligned">
{{if .PageIsIssueList}}
<a class="ui green button" href="{{.RepoLink}}/issues/new">{{.i18n.Tr "repo.issues.new"}}</a>
{{else}}
<a class="ui green button {{if not .PullRequestCtx.Allowed}}disabled{{end}}" href="{{.RepoLink}}/compare/{{.BranchName | EscapePound}}...{{.PullRequestCtx.HeadInfo | EscapePound}}">{{.i18n.Tr "repo.pulls.new"}}</a>
{{end}}
</div>
{{end}}
</div>
<div class="ui divider"></div>
2015-09-02 01:07:02 +02:00
{{if .Issue.IsPull}}
{{template "repo/issue/view_title" .}}
{{template "repo/pulls/tab_menu" .}}
<div class="ui bottom attached tab pull active" data-tab="request-{{.ID}}">
{{template "repo/issue/view_content" .}}
</div>
2015-09-02 01:07:02 +02:00
{{else}}
<div>
2016-03-03 01:18:58 +01:00
{{template "repo/issue/view_content" .}}
</div>
2015-09-02 01:07:02 +02:00
{{end}}
</div>
2014-03-26 14:47:20 +01:00
</div>
{{template "base/footer" .}}