forked from gitea/gitea
		
	 75c62054a6
			
		
	
	
		75c62054a6
		
			
		
	
	
	
	
		
			
			Follow #24097 and #24285 And add a devtest page for modal action button testing. http://localhost:3000/devtest/fomantic-modal Now the `modal_actions_confirm.tmpl` could support: green / blue / yellow positive buttons, the negative button is "secondary". ps: this PR is only a small improvement, there are still a lot of buttons not having proper colors. In the future these buttons could be improved by this approach. These buttons could also be improved according to the conclusion of #24285 in the future.  And add GitHub-like single danger button (context: https://github.com/go-gitea/gitea/issues/24285#issuecomment-1519100312)  --------- Co-authored-by: silverwind <me@silverwind.io>
		
			
				
	
	
		
			77 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			Handlebars
		
	
	
	
	
	
			
		
		
	
	
			77 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			Handlebars
		
	
	
	
	
	
| {{template "base/head" .}}
 | |
| <div role="main" aria-label="{{.Title}}" class="page-content organization teams">
 | |
| 	{{template "org/header" .}}
 | |
| 	<div class="ui container">
 | |
| 		{{template "base/alert" .}}
 | |
| 		<div class="ui grid">
 | |
| 			{{template "org/team/sidebar" .}}
 | |
| 			<div class="ui ten wide column">
 | |
| 				{{template "org/team/navbar" .}}
 | |
| 				{{if .IsOrganizationOwner}}
 | |
| 					<div class="ui attached segment">
 | |
| 						<form class="ui form ignore-dirty" id="add-member-form" action="{{$.OrgLink}}/teams/{{$.Team.LowerName | PathEscape}}/action/add" method="post">
 | |
| 							{{.CsrfTokenHtml}}
 | |
| 							<input type="hidden" name="uid" value="{{.SignedUser.ID}}">
 | |
| 							<div class="inline field ui left">
 | |
| 								<div id="search-user-box" class="ui search"{{if .IsEmailInviteEnabled}} data-allow-email="true" data-allow-email-description="{{.locale.Tr "org.teams.invite_team_member" $.Team.Name}}"{{end}}>
 | |
| 									<div class="ui input">
 | |
| 										<input class="prompt" name="uname" placeholder="{{.locale.Tr "repo.settings.search_user_placeholder"}}" autocomplete="off" required>
 | |
| 									</div>
 | |
| 								</div>
 | |
| 							</div>
 | |
| 							<button class="ui green button">{{.locale.Tr "org.teams.add_team_member"}}</button>
 | |
| 						</form>
 | |
| 					</div>
 | |
| 				{{end}}
 | |
| 				<div class="ui bottom attached table segment members">
 | |
| 					{{range .Team.Members}}
 | |
| 						<div class="item gt-df gt-ac gt-fw">
 | |
| 							<a href="{{.HomeLink}}">{{avatar $.Context . 48 "gt-mr-3 gt-mb-0"}}</a>
 | |
| 							<a class="gt-f1" href="{{.HomeLink}}">
 | |
| 								<strong>{{.DisplayName}}</strong>
 | |
| 							</a>
 | |
| 							{{if and $.IsOrganizationOwner (not (and ($.Team.IsOwnerTeam) (eq (len $.Team.Members) 1)))}}
 | |
| 								<form>
 | |
| 									<button class="ui red button delete-button" data-modal-id="remove-team-member"
 | |
| 										data-url="{{$.OrgLink}}/teams/{{$.Team.LowerName | PathEscape}}/action/remove" data-datauid="{{.ID}}"
 | |
| 										data-name="{{.DisplayName}}"
 | |
| 										data-data-team-name="{{$.Team.Name}}">{{$.locale.Tr "org.members.remove"}}</button>
 | |
| 								</form>
 | |
| 							{{end}}
 | |
| 						</div>
 | |
| 					{{else}}
 | |
| 						<div class="item">
 | |
| 							<span class="text grey italic">{{$.locale.Tr "org.teams.members.none"}}</span>
 | |
| 						</div>
 | |
| 					{{end}}
 | |
| 				</div>
 | |
| 				{{if and .Invites $.IsOrganizationOwner}}
 | |
| 				<h4 class="ui top attached header">{{$.locale.Tr "org.teams.invite_team_member.list"}}</h4>
 | |
| 				<div class="ui bottom attached table segment members">
 | |
| 					{{range .Invites}}
 | |
| 						<div class="item">
 | |
| 							<form action="{{$.OrgLink}}/teams/{{$.Team.LowerName | PathEscape}}/action/remove_invite" method="post">
 | |
| 								{{$.CsrfTokenHtml}}
 | |
| 								<input type="hidden" name="iid" value="{{.ID}}">
 | |
| 								<button class="ui red button right">{{$.locale.Tr "org.members.remove"}}</button>
 | |
| 							</form>
 | |
| 							{{.Email}}
 | |
| 						</div>
 | |
| 					{{end}}
 | |
| 				</div>
 | |
| 				{{end}}
 | |
| 			</div>
 | |
| 		</div>
 | |
| 	</div>
 | |
| </div>
 | |
| <div class="ui g-modal-confirm delete modal" id="remove-team-member">
 | |
| 	<div class="header">
 | |
| 		{{$.locale.Tr "org.members.remove"}}
 | |
| 	</div>
 | |
| 	<div class="content">
 | |
| 		<p>{{$.locale.Tr "org.members.remove.detail" `<span class="name"></span>` `<span class="dataTeamName"></span>` | Safe}}</p>
 | |
| 	</div>
 | |
| 	{{template "base/modal_actions_confirm" .}}
 | |
| </div>
 | |
| {{template "base/footer" .}}
 |