mirror of
https://github.com/go-gitea/gitea
synced 2024-11-07 09:15:53 +01:00
[Branch View] show "New Pull Request" Button only if posible (#7977)
* add check Commits Ahead is gt 0 * code format to start drone-ci test again and formate code is also nice :)
This commit is contained in:
parent
c9546d4cdd
commit
5409dec8fd
@ -75,7 +75,7 @@
|
|||||||
</td>
|
</td>
|
||||||
<td class="two wide right aligned">
|
<td class="two wide right aligned">
|
||||||
{{if not .LatestPullRequest}}
|
{{if not .LatestPullRequest}}
|
||||||
{{if and (not .IsDeleted) $.AllowsPulls}}
|
{{if and (not .IsDeleted) $.AllowsPulls (gt .CommitsAhead 0)}}
|
||||||
<a href="{{$.RepoLink}}/compare/{{$.DefaultBranch | EscapePound}}...{{if ne $.Repository.Owner.Name $.Owner.Name}}{{$.Owner.Name}}:{{end}}{{.Name | EscapePound}}">
|
<a href="{{$.RepoLink}}/compare/{{$.DefaultBranch | EscapePound}}...{{if ne $.Repository.Owner.Name $.Owner.Name}}{{$.Owner.Name}}:{{end}}{{.Name | EscapePound}}">
|
||||||
<button id="new-pull-request" class="ui compact basic button">{{$.i18n.Tr "repo.pulls.compare_changes"}}</button>
|
<button id="new-pull-request" class="ui compact basic button">{{$.i18n.Tr "repo.pulls.compare_changes"}}</button>
|
||||||
</a>
|
</a>
|
||||||
|
@ -2,8 +2,6 @@
|
|||||||
<div class="repository commits">
|
<div class="repository commits">
|
||||||
{{template "repo/header" .}}
|
{{template "repo/header" .}}
|
||||||
<div class="ui container">
|
<div class="ui container">
|
||||||
|
|
||||||
|
|
||||||
<div id="git-graph-container" class="ui segment">
|
<div id="git-graph-container" class="ui segment">
|
||||||
<h1>{{.i18n.Tr "repo.commit_graph"}}</h1>
|
<h1>{{.i18n.Tr "repo.commit_graph"}}</h1>
|
||||||
<div id="rel-container">
|
<div id="rel-container">
|
||||||
@ -37,9 +35,6 @@
|
|||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{{template "base/footer" .}}
|
{{template "base/footer" .}}
|
||||||
|
Loading…
Reference in New Issue
Block a user