mirror of
				https://github.com/go-gitea/gitea
				synced 2025-10-31 03:18:24 +00:00 
			
		
		
		
	Hide notify mail setting ui if not enabled (#20138)
This commit is contained in:
		| @@ -34,6 +34,7 @@ func Account(ctx *context.Context) { | |||||||
| 	ctx.Data["Title"] = ctx.Tr("settings") | 	ctx.Data["Title"] = ctx.Tr("settings") | ||||||
| 	ctx.Data["PageIsSettingsAccount"] = true | 	ctx.Data["PageIsSettingsAccount"] = true | ||||||
| 	ctx.Data["Email"] = ctx.Doer.Email | 	ctx.Data["Email"] = ctx.Doer.Email | ||||||
|  | 	ctx.Data["EnableNotifyMail"] = setting.Service.EnableNotifyMail | ||||||
|  |  | ||||||
| 	loadAccountData(ctx) | 	loadAccountData(ctx) | ||||||
|  |  | ||||||
|   | |||||||
| @@ -43,6 +43,7 @@ | |||||||
| 		</h4> | 		</h4> | ||||||
| 		<div class="ui attached segment"> | 		<div class="ui attached segment"> | ||||||
| 			<div class="ui email list"> | 			<div class="ui email list"> | ||||||
|  | 				{{if $.EnableNotifyMail}} | ||||||
| 				<div class="item"> | 				<div class="item"> | ||||||
| 					<form action="{{AppSubUrl}}/user/settings/account/email" class="ui form" method="post"> | 					<form action="{{AppSubUrl}}/user/settings/account/email" class="ui form" method="post"> | ||||||
| 						{{.i18n.Tr "settings.email_desc"}} | 						{{.i18n.Tr "settings.email_desc"}} | ||||||
| @@ -69,6 +70,7 @@ | |||||||
| 						</div> | 						</div> | ||||||
| 					</form> | 					</form> | ||||||
| 				</div> | 				</div> | ||||||
|  | 				{{end}} | ||||||
| 				{{range .Emails}} | 				{{range .Emails}} | ||||||
| 					<div class="item"> | 					<div class="item"> | ||||||
| 						{{if not .IsPrimary}} | 						{{if not .IsPrimary}} | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user