[Branch View] Protection Symbole (delete dublicate) (#7624)
* delet protectin symbol on "action column" * code format
This commit is contained in:
parent
cbf231a675
commit
a19138c1d3
1 changed files with 3 additions and 5 deletions
|
@ -84,11 +84,9 @@
|
|||
</td>
|
||||
{{if and $.IsWriter (not $.IsMirror)}}
|
||||
<td class="one wide right aligned">
|
||||
{{if .IsProtected}}
|
||||
<i class="octicon octicon-shield"></i>
|
||||
{{else if .IsDeleted}}
|
||||
{{if and .IsDeleted (not .IsProtected)}}
|
||||
<a class="ui basic jump button icon poping up undo-button" href data-url="{{$.Link}}/restore?branch_id={{.DeletedBranch.ID | urlquery}}&name={{.DeletedBranch.Name | urlquery}}" data-content="{{$.i18n.Tr "repo.branch.restore" (.Name | EscapePound)}}" data-variation="tiny inverted" data-position="top right"><i class="octicon octicon-reply text blue"></i></a>
|
||||
{{else}}
|
||||
{{else if (not .IsProtected)}}
|
||||
<a class="ui basic jump button icon poping up delete-branch-button" href data-url="{{$.Link}}/delete?name={{.Name | urlquery}}" data-content="{{$.i18n.Tr "repo.branch.delete" (.Name | EscapePound)}}" data-variation="tiny inverted" data-position="top right" data-name="{{.Name}}"><i class="trash icon text red"></i></a>
|
||||
{{end}}
|
||||
</td>
|
||||
|
|
Loading…
Reference in a new issue