2015-11-17 12:48:05 +05:30
|
|
|
{{template "base/head" .}}
|
2020-12-01 09:30:14 +05:30
|
|
|
<div class="page-content repository settings collaboration">
|
2015-11-17 12:48:05 +05:30
|
|
|
{{template "repo/header" .}}
|
2017-03-16 04:09:38 +05:30
|
|
|
{{template "repo/settings/navbar" .}}
|
2015-11-17 12:48:05 +05:30
|
|
|
<div class="ui container">
|
2017-03-16 04:09:38 +05:30
|
|
|
{{template "base/alert" .}}
|
|
|
|
<h4 class="ui top attached header">
|
|
|
|
{{.i18n.Tr "repo.settings.collaboration"}}
|
|
|
|
</h4>
|
2017-04-23 06:25:02 +05:30
|
|
|
{{if .Collaborators}}
|
2017-03-16 04:09:38 +05:30
|
|
|
<div class="ui attached segment collaborator list">
|
|
|
|
{{range .Collaborators}}
|
|
|
|
<div class="item ui grid">
|
|
|
|
<div class="ui five wide column">
|
2021-11-16 23:48:25 +05:30
|
|
|
<a href="{{.HomeLink}}">
|
2020-12-04 00:16:11 +05:30
|
|
|
{{avatar .}}
|
2017-03-16 04:09:38 +05:30
|
|
|
{{.DisplayName}}
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
<div class="ui eight wide column">
|
2020-09-12 01:49:00 +05:30
|
|
|
{{svg "octicon-shield-lock"}}
|
2017-03-16 04:09:38 +05:30
|
|
|
<div class="ui inline dropdown">
|
2019-09-24 01:38:03 +05:30
|
|
|
<div class="text">{{if eq .Collaboration.Mode 1}}{{$.i18n.Tr "repo.settings.collaboration.read"}}{{else if eq .Collaboration.Mode 2}}{{$.i18n.Tr "repo.settings.collaboration.write"}}{{else if eq .Collaboration.Mode 3}}{{$.i18n.Tr "repo.settings.collaboration.admin"}}{{else}}{{$.i18n.Tr "repo.settings.collaboration.undefined"}}{{end}}</div>
|
2020-11-01 03:45:11 +05:30
|
|
|
{{svg "octicon-triangle-down" 14 "dropdown icon"}}
|
2017-03-16 04:09:38 +05:30
|
|
|
<div class="access-mode menu" data-url="{{$.Link}}/access_mode" data-uid="{{.ID}}">
|
|
|
|
<div class="item" data-text="{{$.i18n.Tr "repo.settings.collaboration.admin"}}" data-value="3">{{$.i18n.Tr "repo.settings.collaboration.admin"}}</div>
|
|
|
|
<div class="item" data-text="{{$.i18n.Tr "repo.settings.collaboration.write"}}" data-value="2">{{$.i18n.Tr "repo.settings.collaboration.write"}}</div>
|
|
|
|
<div class="item" data-text="{{$.i18n.Tr "repo.settings.collaboration.read"}}" data-value="1">{{$.i18n.Tr "repo.settings.collaboration.read"}}</div>
|
2016-03-06 04:38:42 +05:30
|
|
|
</div>
|
2015-12-08 04:00:52 +05:30
|
|
|
</div>
|
2017-03-16 04:09:38 +05:30
|
|
|
</div>
|
|
|
|
<div class="ui two wide column">
|
|
|
|
<button class="ui red tiny button inline text-thin delete-button" data-url="{{$.Link}}/delete" data-id="{{.ID}}">
|
|
|
|
{{$.i18n.Tr "repo.settings.delete_collaborator"}}
|
|
|
|
</button>
|
|
|
|
</div>
|
2015-12-08 04:00:52 +05:30
|
|
|
</div>
|
2017-03-16 04:09:38 +05:30
|
|
|
{{end}}
|
|
|
|
</div>
|
2017-04-23 06:25:02 +05:30
|
|
|
{{end}}
|
2017-03-16 04:09:38 +05:30
|
|
|
<div class="ui bottom attached segment">
|
|
|
|
<form class="ui form" id="repo-collab-form" action="{{.Link}}" method="post">
|
|
|
|
{{.CsrfTokenHtml}}
|
|
|
|
<div class="inline field ui left">
|
2017-10-03 08:57:48 +05:30
|
|
|
<div id="search-user-box" class="ui search">
|
2017-03-16 04:09:38 +05:30
|
|
|
<div class="ui input">
|
|
|
|
<input class="prompt" name="collaborator" placeholder="{{.i18n.Tr "repo.settings.search_user_placeholder"}}" autocomplete="off" autofocus required>
|
2015-12-08 04:00:52 +05:30
|
|
|
</div>
|
2017-03-16 04:09:38 +05:30
|
|
|
</div>
|
2015-12-08 04:00:52 +05:30
|
|
|
</div>
|
2017-03-16 04:09:38 +05:30
|
|
|
<button class="ui green button">{{.i18n.Tr "repo.settings.add_collaborator"}}</button>
|
|
|
|
</form>
|
2015-12-08 04:00:52 +05:30
|
|
|
</div>
|
2019-09-24 01:38:03 +05:30
|
|
|
|
2019-09-24 07:00:40 +05:30
|
|
|
{{if .RepoOwnerIsOrganization}}
|
2019-09-24 01:38:03 +05:30
|
|
|
<h4 class="ui top attached header">
|
2020-05-08 18:09:17 +05:30
|
|
|
{{$.i18n.Tr "repo.settings.teams"}}
|
2019-09-24 01:38:03 +05:30
|
|
|
</h4>
|
|
|
|
{{ $allowedToChangeTeams := ( or (.Org.RepoAdminChangeTeamAccess) (.Permission.IsOwner)) }}
|
|
|
|
{{if .Teams}}
|
|
|
|
<div class="ui attached segment collaborator list">
|
|
|
|
{{range $t, $team := .Teams}}
|
|
|
|
<div class="item ui grid">
|
|
|
|
<div class="ui five wide column">
|
2021-11-16 23:48:25 +05:30
|
|
|
<a href="{{AppSubUrl}}/org/{{$.OrgName|PathEscape}}/teams/{{.LowerName|PathEscape}}">
|
2019-09-24 01:38:03 +05:30
|
|
|
{{.Name}}
|
|
|
|
</a>
|
|
|
|
</div>
|
2021-11-18 08:56:50 +05:30
|
|
|
<div class="ui eight wide column tooltip" data-content="{{$.i18n.Tr "repo.settings.change_team_permission_tip"}}">
|
2020-09-12 01:49:00 +05:30
|
|
|
{{svg "octicon-shield-lock"}}
|
2019-09-24 01:38:03 +05:30
|
|
|
<div class="ui inline dropdown">
|
|
|
|
<div class="text">{{if eq .Authorize 1}}{{$.i18n.Tr "repo.settings.collaboration.read"}}{{else if eq .Authorize 2}}{{$.i18n.Tr "repo.settings.collaboration.write"}}{{else if eq .Authorize 3}}{{$.i18n.Tr "repo.settings.collaboration.admin"}}{{else if eq .Authorize 4}}{{$.i18n.Tr "repo.settings.collaboration.owner"}}{{else}}{{$.i18n.Tr "repo.settings.collaboration.undefined"}}{{end}}</div>
|
|
|
|
</div>
|
|
|
|
{{ if or (eq .Authorize 1) (eq .Authorize 2) }}
|
|
|
|
{{ $first := true }}
|
|
|
|
<div class="description">
|
|
|
|
Sections: {{range $u, $unit := $.Units}}{{if and ($.Repo.UnitEnabled $unit.Type) ($team.UnitEnabled $unit.Type)}}{{if $first}}{{ $first = false }}{{else}}, {{end}}{{$.i18n.Tr $unit.NameKey}}{{end}}{{end}} {{if $first}}None{{end}}
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
{{if $allowedToChangeTeams}}
|
2021-11-18 08:56:50 +05:30
|
|
|
<div class="ui two wide column {{if .IncludesAllRepositories}}tooltip{{end}}" {{if .IncludesAllRepositories}} data-content="{{$.i18n.Tr "repo.settings.delete_team_tip"}}"{{end}}>
|
2020-01-08 06:06:39 +05:30
|
|
|
<button class="ui red tiny button inline text-thin delete-button {{if .IncludesAllRepositories}}disabled{{end}}" data-url="{{$.Link}}/team/delete" data-id="{{.ID}}">
|
2019-09-24 01:38:03 +05:30
|
|
|
{{$.i18n.Tr "repo.settings.delete_collaborator"}}
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
<div class="ui bottom attached segment">
|
|
|
|
{{if $allowedToChangeTeams}}
|
|
|
|
<form class="ui form" id="repo-collab-team-form" action="{{.Link}}/team" method="post">
|
|
|
|
{{.CsrfTokenHtml}}
|
|
|
|
<div class="inline field ui left">
|
2019-10-01 11:02:28 +05:30
|
|
|
<div id="search-team-box" class="ui search" data-org="{{.OrgName}}">
|
2019-09-24 01:38:03 +05:30
|
|
|
<div class="ui input">
|
2020-05-08 18:09:17 +05:30
|
|
|
<input class="prompt" name="team" placeholder="{{$.i18n.Tr "repo.settings.search_team"}}" autocomplete="off" autofocus required>
|
2019-09-24 01:38:03 +05:30
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-05-08 18:09:17 +05:30
|
|
|
<button class="ui green button">{{$.i18n.Tr "repo.settings.add_team"}}</button>
|
2019-09-24 01:38:03 +05:30
|
|
|
</form>
|
|
|
|
{{else}}
|
|
|
|
<div class="item">
|
2020-05-08 18:09:17 +05:30
|
|
|
{{$.i18n.Tr "repo.settings.change_team_access_not_allowed"}}
|
2019-09-24 01:38:03 +05:30
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
2019-09-24 07:00:40 +05:30
|
|
|
{{end}}
|
2014-08-07 16:10:05 +05:30
|
|
|
</div>
|
|
|
|
</div>
|
2016-03-06 04:38:42 +05:30
|
|
|
|
|
|
|
<div class="ui small basic delete modal">
|
|
|
|
<div class="ui icon header">
|
2021-03-22 09:34:19 +05:30
|
|
|
{{svg "octicon-trash"}}
|
2016-03-06 04:38:42 +05:30
|
|
|
{{.i18n.Tr "repo.settings.collaborator_deletion"}}
|
|
|
|
</div>
|
|
|
|
<div class="content">
|
|
|
|
<p>{{.i18n.Tr "repo.settings.collaborator_deletion_desc"}}</p>
|
|
|
|
</div>
|
|
|
|
{{template "base/delete_modal_actions" .}}
|
|
|
|
</div>
|
2015-12-08 04:00:52 +05:30
|
|
|
{{template "base/footer" .}}
|