mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 16:40:24 +08:00 
			
		
		
		
	[Branch View] icons to buttons (#7602)
* add restore-button info message * branch deltete undo icon to button * branch deltete icon to button
This commit is contained in:
		@@ -1407,6 +1407,7 @@ branch.deleted_by = Deleted by %s
 | 
				
			|||||||
branch.restore_success = Branch '%s' has been restored.
 | 
					branch.restore_success = Branch '%s' has been restored.
 | 
				
			||||||
branch.restore_failed = Failed to restore branch '%s'.
 | 
					branch.restore_failed = Failed to restore branch '%s'.
 | 
				
			||||||
branch.protected_deletion_failed = Branch '%s' is protected. It cannot be deleted.
 | 
					branch.protected_deletion_failed = Branch '%s' is protected. It cannot be deleted.
 | 
				
			||||||
 | 
					branch.restore = Restore Branch '%s'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
topic.manage_topics = Manage Topics
 | 
					topic.manage_topics = Manage Topics
 | 
				
			||||||
topic.done = Done
 | 
					topic.done = Done
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -97,9 +97,9 @@
 | 
				
			|||||||
										{{if .IsProtected}}
 | 
															{{if .IsProtected}}
 | 
				
			||||||
											<i class="octicon octicon-shield"></i>
 | 
																<i class="octicon octicon-shield"></i>
 | 
				
			||||||
										{{else if .IsDeleted}}
 | 
															{{else if .IsDeleted}}
 | 
				
			||||||
											<a class="undo-button" href data-url="{{$.Link}}/restore?branch_id={{.DeletedBranch.ID | urlquery}}&name={{.DeletedBranch.Name | urlquery}}"><i class="octicon octicon-reply"></i></a>
 | 
																<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}}
 | 
				
			||||||
											<a class="delete-branch-button" href data-url="{{$.Link}}/delete?name={{.Name | urlquery}}" data-name="{{.Name}}"><i class="trash icon text red"></i></a>
 | 
																<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}}
 | 
															{{end}}
 | 
				
			||||||
										</td>
 | 
															</td>
 | 
				
			||||||
									{{end}}
 | 
														{{end}}
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user