* Create system webhook column (and migration) * Create system webhook DB methods Based on the default webhook ones * Modify router to handle system webhooks and default ones * Remove old unused admin nav template * Adjust orgRepoCtx to differentiate system and default webhook URLs * Assign IsSystemWebhook when creating webhooks * Correctly use booleans for IsSystemWebhook * Use system webhooks when preparing webhooks for payload * Add UI and locale changes * Use router params to differentiate admin hook pages * Fix deleting admin webhooks and rename method * Add clarity to webhook docs * Revert "Remove old unused admin nav template" This reverts commit 191a20a7389fe5f6256b0ad6aafd04b9b0e295c5. * Rename WebHooksNewPost to GiteaHooksNewPost for clarity * Reintroduce blank line lost during merge conflict Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com> Co-authored-by: Lauris BH <lauris@nix.lv>
		
			
				
	
	
		
			35 lines
		
	
	
	
		
			1.5 KiB
		
	
	
	
		
			Cheetah
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
	
		
			1.5 KiB
		
	
	
	
		
			Cheetah
		
	
	
	
	
	
| <div class="ui secondary pointing tabular top attached borderless menu stackable new-menu navbar">
 | |
| 	<a class="{{if .PageIsAdminDashboard}}active{{end}} item" href="{{AppSubUrl}}/admin">
 | |
| 		{{.i18n.Tr "admin.dashboard"}}
 | |
| 	</a>
 | |
| 	<a class="{{if .PageIsAdminUsers}}active{{end}} item" href="{{AppSubUrl}}/admin/users">
 | |
| 		{{.i18n.Tr "admin.users"}}
 | |
| 	</a>
 | |
| 	<a class="{{if .PageIsAdminOrganizations}}active{{end}} item" href="{{AppSubUrl}}/admin/orgs">
 | |
| 		{{.i18n.Tr "admin.organizations"}}
 | |
| 	</a>
 | |
| 	<a class="{{if .PageIsAdminRepositories}}active{{end}} item" href="{{AppSubUrl}}/admin/repos">
 | |
| 		{{.i18n.Tr "admin.repositories"}}
 | |
| 	</a>
 | |
| 	<a class="{{if .PageIsAdminHooks}}active{{end}} item" href="{{AppSubUrl}}/admin/hooks">
 | |
| 		{{.i18n.Tr "admin.hooks"}}
 | |
| 	</a>
 | |
| 	<a class="{{if .PageIsAdminSystemHooks}}active{{end}} item" href="{{AppSubUrl}}/admin/system-hooks">
 | |
| 		{{.i18n.Tr "admin.systemhooks"}}
 | |
| 	</a>
 | |
| 	<a class="{{if .PageIsAdminAuthentications}}active{{end}} item" href="{{AppSubUrl}}/admin/auths">
 | |
| 		{{.i18n.Tr "admin.authentication"}}
 | |
| 	</a>
 | |
| 	<a class="{{if .PageIsAdminEmails}}active{{end}} item" href="{{AppSubUrl}}/admin/emails">
 | |
| 		{{.i18n.Tr "admin.emails"}}
 | |
| 	</a>
 | |
| 	<a class="{{if .PageIsAdminConfig}}active{{end}} item" href="{{AppSubUrl}}/admin/config">
 | |
| 		{{.i18n.Tr "admin.config"}}
 | |
| 	</a>
 | |
| 	<a class="{{if .PageIsAdminNotices}}active{{end}} item" href="{{AppSubUrl}}/admin/notices">
 | |
| 		{{.i18n.Tr "admin.notices"}}
 | |
| 	</a>
 | |
| 	<a class="{{if .PageIsAdminMonitor}}active{{end}} item" href="{{AppSubUrl}}/admin/monitor">
 | |
| 		{{.i18n.Tr "admin.monitor"}}
 | |
| 	</a>
 | |
| </div>
 |