2015-11-22 07:32:09 +01:00
|
|
|
{{template "base/head" .}}
|
2023-02-01 23:56:10 +01:00
|
|
|
<div role="main" aria-label="{{.Title}}" class="page-content organization teams">
|
2015-11-22 07:32:09 +01:00
|
|
|
{{template "org/header" .}}
|
2015-12-07 23:30:52 +01:00
|
|
|
<div class="ui container">
|
|
|
|
{{template "base/alert" .}}
|
2023-04-26 17:59:08 +02:00
|
|
|
<div class="ui stackable grid">
|
2015-11-22 07:32:09 +01:00
|
|
|
{{template "org/team/sidebar" .}}
|
|
|
|
<div class="ui ten wide column">
|
2018-12-09 07:42:11 +01:00
|
|
|
{{template "org/team/navbar" .}}
|
2019-11-06 10:37:14 +01:00
|
|
|
{{$canAddRemove := and $.IsOrganizationOwner (not $.Team.IncludesAllRepositories)}}
|
2019-01-26 01:14:35 +01:00
|
|
|
{{if $canAddRemove}}
|
2019-11-09 01:39:37 +01:00
|
|
|
<div class="ui attached segment" id="repo-top-segment">
|
|
|
|
<div class="inline ui field left">
|
2022-09-14 13:24:39 +02:00
|
|
|
<form class="ui form ignore-dirty" id="add-repo-form" action="{{$.OrgLink}}/teams/{{$.Team.LowerName | PathEscape}}/action/repo/add" method="post">
|
2019-11-09 01:39:37 +01:00
|
|
|
{{.CsrfTokenHtml}}
|
|
|
|
<div class="inline field ui left">
|
|
|
|
<div id="search-repo-box" data-uid="{{.Org.ID}}" class="ui search">
|
|
|
|
<div class="ui input">
|
2022-06-27 22:58:46 +02:00
|
|
|
<input class="prompt" name="repo_name" placeholder="{{.locale.Tr "org.teams.search_repo_placeholder"}}" autocomplete="off" required>
|
2019-11-09 01:39:37 +01:00
|
|
|
</div>
|
2019-01-26 01:14:35 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
2022-06-27 22:58:46 +02:00
|
|
|
<button class="ui green button">{{.locale.Tr "add"}}</button>
|
2019-11-09 01:39:37 +01:00
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
<div class="inline ui field right">
|
2021-11-16 19:18:25 +01:00
|
|
|
<form class="ui form" id="repo-multiple-form" action="{{$.OrgLink}}/teams/{{$.Team.LowerName | PathEscape}}/repositories" method="post">
|
2023-04-29 13:35:59 +02:00
|
|
|
<button class="ui green button add-all-button" data-modal-id="org-team-add-all-repo" data-url="{{$.OrgLink}}/teams/{{$.Team.LowerName | PathEscape}}/action/repo/addall">{{.locale.Tr "add_all"}}</button>
|
|
|
|
<button class="ui red button delete-button" data-modal-id="org-team-remove-all-repo" data-url="{{$.OrgLink}}/teams/{{$.Team.LowerName | PathEscape}}/action/repo/removeall">{{.locale.Tr "remove_all"}}</button>
|
2019-11-09 01:39:37 +01:00
|
|
|
</form>
|
|
|
|
</div>
|
2019-01-26 01:14:35 +01:00
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
<div class="ui bottom attached table segment repositories">
|
2015-12-07 23:30:52 +01:00
|
|
|
{{range .Team.Repos}}
|
2023-04-04 06:49:09 +02:00
|
|
|
<div class="item gt-df gt-ac gt-fw">
|
|
|
|
{{if .IsPrivate}}
|
|
|
|
{{svg "octicon-lock" 16 "gt-mr-3"}}
|
|
|
|
{{else if .IsFork}}
|
|
|
|
{{svg "octicon-repo-forked" 16 "gt-mr-3"}}
|
|
|
|
{{else if .IsMirror}}
|
|
|
|
{{svg "octicon-mirror" 16 "gt-mr-3"}}
|
|
|
|
{{else}}
|
|
|
|
{{svg "octicon-repo" 16 "gt-mr-3"}}
|
|
|
|
{{end}}
|
|
|
|
<a class="member gt-f1" href="{{$.Org.HomeLink}}/{{.Name | PathEscape}}">
|
|
|
|
<strong>{{$.Org.Name}}/{{.Name}}</strong>
|
|
|
|
</a>
|
2015-12-07 23:30:52 +01:00
|
|
|
{{if $canAddRemove}}
|
2021-11-16 19:18:25 +01:00
|
|
|
<form method="post" action="{{$.OrgLink}}/teams/{{$.Team.LowerName | PathEscape}}/action/repo/remove">
|
2020-02-25 21:28:47 +01:00
|
|
|
{{$.CsrfTokenHtml}}
|
2022-06-27 22:58:46 +02:00
|
|
|
<button type="submit" class="ui red small button right" name="repoid" value="{{.ID}}">{{$.locale.Tr "remove"}}</button>
|
2020-02-25 21:28:47 +01:00
|
|
|
</form>
|
2015-12-07 23:30:52 +01:00
|
|
|
{{end}}
|
|
|
|
</div>
|
2018-12-09 07:42:11 +01:00
|
|
|
{{else}}
|
|
|
|
<div class="item">
|
2022-06-27 22:58:46 +02:00
|
|
|
<span class="text grey italic">{{$.locale.Tr "org.teams.repos.none"}}</span>
|
2018-12-09 07:42:11 +01:00
|
|
|
</div>
|
2015-12-07 23:30:52 +01:00
|
|
|
{{end}}
|
|
|
|
</div>
|
2014-08-26 12:11:15 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2019-11-09 01:39:37 +01:00
|
|
|
|
2023-04-24 13:08:59 +02:00
|
|
|
<div class="ui g-modal-confirm delete modal" id="org-team-remove-all-repo">
|
2023-04-23 11:24:19 +02:00
|
|
|
<div class="header">
|
2021-03-22 05:04:19 +01:00
|
|
|
{{svg "octicon-trash"}}
|
2022-06-27 22:58:46 +02:00
|
|
|
{{.locale.Tr "org.teams.remove_all_repos_title"}}
|
2019-11-09 01:39:37 +01:00
|
|
|
</div>
|
|
|
|
<div class="content">
|
2022-06-27 22:58:46 +02:00
|
|
|
<p>{{.locale.Tr "org.teams.remove_all_repos_desc"}}</p>
|
2019-11-09 01:39:37 +01:00
|
|
|
</div>
|
2023-04-23 11:24:19 +02:00
|
|
|
{{template "base/modal_actions_confirm" .}}
|
2019-11-09 01:39:37 +01:00
|
|
|
</div>
|
|
|
|
|
2023-04-24 13:08:59 +02:00
|
|
|
<div class="ui g-modal-confirm addall modal" id="org-team-add-all-repo">
|
2023-04-23 11:24:19 +02:00
|
|
|
<div class="header">
|
2023-03-21 02:42:02 +01:00
|
|
|
{{svg "octicon-globe"}}
|
2022-06-27 22:58:46 +02:00
|
|
|
{{.locale.Tr "org.teams.add_all_repos_title"}}
|
2019-11-09 01:39:37 +01:00
|
|
|
</div>
|
|
|
|
<div class="content">
|
2022-06-27 22:58:46 +02:00
|
|
|
<p>{{.locale.Tr "org.teams.add_all_repos_desc"}}</p>
|
2019-11-09 01:39:37 +01:00
|
|
|
</div>
|
2023-04-23 11:24:19 +02:00
|
|
|
{{template "base/modal_actions_confirm" .}}
|
2019-11-09 01:39:37 +01:00
|
|
|
</div>
|
|
|
|
|
2015-12-07 23:30:52 +01:00
|
|
|
{{template "base/footer" .}}
|