2015-11-22 12:02:09 +05:30
|
|
|
{{template "base/head" .}}
|
2023-02-02 04:26:10 +05:30
|
|
|
<div role="main" aria-label="{{.Title}}" class="page-content organization teams">
|
2015-11-22 12:02:09 +05:30
|
|
|
{{template "org/header" .}}
|
2015-12-08 04:00:52 +05:30
|
|
|
<div class="ui container">
|
|
|
|
{{template "base/alert" .}}
|
2023-04-26 21:29:08 +05:30
|
|
|
<div class="ui stackable grid">
|
2015-11-22 12:02:09 +05:30
|
|
|
{{template "org/team/sidebar" .}}
|
|
|
|
<div class="ui ten wide column">
|
2018-12-09 12:12:11 +05:30
|
|
|
{{template "org/team/navbar" .}}
|
2019-11-06 15:07:14 +05:30
|
|
|
{{$canAddRemove := and $.IsOrganizationOwner (not $.Team.IncludesAllRepositories)}}
|
2019-01-26 05:44:35 +05:30
|
|
|
{{if $canAddRemove}}
|
2023-06-13 17:40:10 +05:30
|
|
|
<div class="ui attached segment gt-df gt-fw gt-gap-3">
|
|
|
|
<form class="ui form ignore-dirty gt-f1 gt-dif" action="{{$.OrgLink}}/teams/{{$.Team.LowerName | PathEscape}}/action/repo/add" method="post">
|
|
|
|
{{.CsrfTokenHtml}}
|
|
|
|
<div id="search-repo-box" data-uid="{{.Org.ID}}" class="ui search">
|
|
|
|
<div class="ui input">
|
|
|
|
<input class="prompt" name="repo_name" placeholder="{{.locale.Tr "org.teams.search_repo_placeholder"}}" autocomplete="off" required>
|
2019-01-26 05:44:35 +05:30
|
|
|
</div>
|
2023-06-13 17:40:10 +05:30
|
|
|
</div>
|
|
|
|
<button class="ui green button gt-ml-3">{{.locale.Tr "add"}}</button>
|
|
|
|
</form>
|
|
|
|
<div class="gt-dib">
|
|
|
|
<button class="ui green button link-action" data-modal-confirm="{{.locale.Tr "org.teams.add_all_repos_desc"}}" data-url="{{$.OrgLink}}/teams/{{$.Team.LowerName | PathEscape}}/action/repo/addall">{{.locale.Tr "add_all"}}</button>
|
|
|
|
<button class="ui red button link-action" data-modal-confirm="{{.locale.Tr "org.teams.remove_all_repos_desc"}}" data-url="{{$.OrgLink}}/teams/{{$.Team.LowerName | PathEscape}}/action/repo/removeall">{{.locale.Tr "remove_all"}}</button>
|
2019-11-09 06:09:37 +05:30
|
|
|
</div>
|
2019-01-26 05:44:35 +05:30
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
<div class="ui bottom attached table segment repositories">
|
2015-12-08 04:00:52 +05:30
|
|
|
{{range .Team.Repos}}
|
2023-04-04 10:19:09 +05:30
|
|
|
<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-08 04:00:52 +05:30
|
|
|
{{if $canAddRemove}}
|
2021-11-16 23:48:25 +05:30
|
|
|
<form method="post" action="{{$.OrgLink}}/teams/{{$.Team.LowerName | PathEscape}}/action/repo/remove">
|
2020-02-26 01:58:47 +05:30
|
|
|
{{$.CsrfTokenHtml}}
|
2022-06-28 02:28:46 +05:30
|
|
|
<button type="submit" class="ui red small button right" name="repoid" value="{{.ID}}">{{$.locale.Tr "remove"}}</button>
|
2020-02-26 01:58:47 +05:30
|
|
|
</form>
|
2015-12-08 04:00:52 +05:30
|
|
|
{{end}}
|
|
|
|
</div>
|
2018-12-09 12:12:11 +05:30
|
|
|
{{else}}
|
|
|
|
<div class="item">
|
2022-06-28 02:28:46 +05:30
|
|
|
<span class="text grey italic">{{$.locale.Tr "org.teams.repos.none"}}</span>
|
2018-12-09 12:12:11 +05:30
|
|
|
</div>
|
2015-12-08 04:00:52 +05:30
|
|
|
{{end}}
|
|
|
|
</div>
|
2014-08-26 15:41:15 +05:30
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2019-11-09 06:09:37 +05:30
|
|
|
|
2015-12-08 04:00:52 +05:30
|
|
|
{{template "base/footer" .}}
|