|
@@ -15,9 +15,11 @@
|
|
|
{{$timeSince := TimeSince .DefaultBranch.Commit.Committer.When $.Lang}}
|
|
|
<span class="ui text light grey">{{$.i18n.Tr "repo.branches.updated_by" $timeSince .DefaultBranch.Commit.Committer.Name | Safe}}</span>
|
|
|
</div>
|
|
|
- <div class="ui four wide column">
|
|
|
- <a class="ui basic blue button" href="{{$.RepoLink}}/settings/branches">{{.i18n.Tr "repo.branches.change_default_branch"}}</a>
|
|
|
- </div>
|
|
|
+ {{if $.IsRepositoryAdmin}}
|
|
|
+ <div class="ui four wide column">
|
|
|
+ <a class="ui basic blue button" href="{{$.RepoLink}}/settings/branches">{{.i18n.Tr "repo.branches.change_default_branch"}}</a>
|
|
|
+ </div>
|
|
|
+ {{end}}
|
|
|
</div>
|
|
|
</div>
|
|
|
|
|
@@ -33,9 +35,11 @@
|
|
|
{{$timeSince := TimeSince .Commit.Committer.When $.Lang}}
|
|
|
<span class="ui text light grey">{{$.i18n.Tr "repo.branches.updated_by" $timeSince .Commit.Committer.Name | Safe}}</span>
|
|
|
</div>
|
|
|
- <div class="ui four wide column">
|
|
|
- <a class="ui basic button" href="{{$.RepoLink}}/compare/{{$.DefaultBranch.Name}}...{{.Name}}"><i class="octicon octicon-git-pull-request"></i> {{$.i18n.Tr "repo.pulls.new"}}</a>
|
|
|
- </div>
|
|
|
+ {{if $.IsRepositoryWriter}}
|
|
|
+ <div class="ui four wide column">
|
|
|
+ <a class="ui basic button" href="{{$.RepoLink}}/compare/{{$.DefaultBranch.Name}}...{{.Name}}"><i class="octicon octicon-git-pull-request"></i> {{$.i18n.Tr "repo.pulls.new"}}</a>
|
|
|
+ </div>
|
|
|
+ {{end}}
|
|
|
</div>
|
|
|
{{end}}
|
|
|
</div>
|