mirror of
https://github.com/go-gitea/gitea.git
synced 2026-05-08 14:34:49 +09:00
- Add pagination and keyword search to the teams list page - 5 teams shown at most in the overview page Fixes: #34482 Fixes: #36602 Fixes: #37084 Signed-off-by: silverwind <me@silverwind.io> Co-authored-by: Animesh Kumar <83393501+kmranimesh@users.noreply.github.com> Co-authored-by: silverwind <me@silverwind.io> Co-authored-by: Claude (Opus 4.7) <noreply@anthropic.com> Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
96 lines
3.8 KiB
Handlebars
96 lines
3.8 KiB
Handlebars
<div class="ui six wide column">
|
|
<h4 class="ui top attached header flex-left-right">
|
|
<strong>{{.Team.Name}}</strong>
|
|
<div class="flex-center-wrap">
|
|
{{if .Team.IsMember ctx $.SignedUser.ID}}
|
|
<button class="ui red mini compact button show-modal" data-modal="#org-member-leave-team"
|
|
data-modal-form.action="{{$.OrgLink}}/teams/{{$.Team.LowerName | PathEscape}}/action/leave?uid={{$.SignedUser.ID}}"
|
|
data-modal-to-leave-team-name="{{$.Team.Name}}"
|
|
>{{ctx.Locale.Tr "org.teams.leave"}}</button>
|
|
{{else if .IsOrganizationOwner}}
|
|
<form method="post" action="{{.OrgLink}}/teams/{{.Team.LowerName | PathEscape}}/action/join">
|
|
<input type="hidden" name="page" value="team">
|
|
<button type="submit" class="ui primary mini compact button" name="uid" value="{{$.SignedUser.ID}}">{{ctx.Locale.Tr "org.teams.join"}}</button>
|
|
</form>
|
|
{{end}}
|
|
</div>
|
|
</h4>
|
|
<div class="ui attached table segment detail">
|
|
<div class="item">
|
|
{{if .Team.Description}}
|
|
{{.Team.Description}}
|
|
{{else}}
|
|
<span class="tw-text-text-light tw-italic">{{ctx.Locale.Tr "org.teams.no_desc"}}</span>
|
|
{{end}}
|
|
</div>
|
|
{{if eq .Team.LowerName "owners"}}
|
|
<div class="item">
|
|
<p>{{ctx.Locale.Tr "org.teams.owners_permission_desc"}}</p>
|
|
<p>{{ctx.Locale.Tr "org.teams.owners_permission_suggestion"}}</p>
|
|
</div>
|
|
{{else}}
|
|
<div class="item">
|
|
<h3>{{ctx.Locale.Tr "org.team_access_desc"}}</h3>
|
|
<ul>
|
|
{{if .Team.IncludesAllRepositories}}
|
|
<li>{{ctx.Locale.Tr "org.teams.all_repositories"}}</li>
|
|
{{else}}
|
|
<li>{{ctx.Locale.Tr "org.teams.specific_repositories"}}</li>
|
|
{{end}}
|
|
{{if .Team.CanCreateOrgRepo}}
|
|
<li>{{ctx.Locale.Tr "org.teams.can_create_org_repo"}}</li>
|
|
{{end}}
|
|
</ul>
|
|
{{/* the AccessMode should be either none or admin/owner, the real permissions are provided by each team unit */}}
|
|
{{if false}}{{/*(eq .Team.AccessMode 2)*/}}
|
|
<h3>{{ctx.Locale.Tr "org.settings.permission"}}</h3>
|
|
{{ctx.Locale.Tr "org.teams.write_permission_desc"}}
|
|
{{else if (eq .Team.AccessMode 3)}}
|
|
{{/* FIXME: here might not right, see "FIXME: TEAM-UNIT-PERMISSION", new units might not have correct admin permission*/}}
|
|
<h3>{{ctx.Locale.Tr "org.settings.permission"}}</h3>
|
|
{{ctx.Locale.Tr "org.teams.admin_permission_desc"}}
|
|
{{else}}
|
|
<table class="ui table">
|
|
<thead>
|
|
<tr>
|
|
<th>{{ctx.Locale.Tr "units.unit"}}</th>
|
|
<th>{{ctx.Locale.Tr "org.team_permission_desc"}}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{{range $t, $unit := $.Units}}
|
|
{{if (not $unit.Type.UnitGlobalDisabled)}}
|
|
<tr>
|
|
<td><strong>{{ctx.Locale.Tr $unit.NameKey}}</strong></td>
|
|
<td>{{if eq ($.Team.UnitAccessMode ctx $unit.Type) 0 -}}
|
|
{{ctx.Locale.Tr "org.teams.none_access"}}
|
|
{{- else if or (eq $.Team.ID 0) (eq ($.Team.UnitAccessMode ctx $unit.Type) 1) -}}
|
|
{{ctx.Locale.Tr "org.teams.read_access"}}
|
|
{{- else if eq ($.Team.UnitAccessMode ctx $unit.Type) 2 -}}
|
|
{{ctx.Locale.Tr "org.teams.write_access"}}
|
|
{{- end}}</td>
|
|
</tr>
|
|
{{end}}
|
|
{{end}}
|
|
</tbody>
|
|
</table>
|
|
{{end}}
|
|
</div>
|
|
{{end}}
|
|
</div>
|
|
{{if .IsOrganizationOwner}}
|
|
<div class="ui bottom attached segment">
|
|
<a class="ui small button" href="{{.OrgLink}}/teams/{{.Team.LowerName | PathEscape}}/edit">{{svg "octicon-gear"}} {{ctx.Locale.Tr "org.teams.settings"}}</a>
|
|
</div>
|
|
{{end}}
|
|
</div>
|
|
<div class="ui mini modal" id="org-member-leave-team">
|
|
<div class="header">
|
|
{{ctx.Locale.Tr "org.teams.leave"}}
|
|
</div>
|
|
<form class="content ui form form-fetch-action" method="post">
|
|
<p>{{ctx.Locale.Tr "org.teams.leave.detail" (HTMLFormat `<span class="%s"></span>` "to-leave-team-name")}}</p>
|
|
{{template "base/modal_actions_confirm" .}}
|
|
</form>
|
|
</div>
|