2015-11-22 12:02:09 +05:30
|
|
|
{{template "base/head" .}}
|
2020-12-01 09:30:14 +05:30
|
|
|
<div 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" .}}
|
|
|
|
<div class="ui 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}}
|
2019-11-09 06:09:37 +05:30
|
|
|
<div class="ui attached segment" id="repo-top-segment">
|
|
|
|
<div class="inline ui field left">
|
|
|
|
<form class="ui form" id="add-repo-form" action="{{$.OrgLink}}/teams/{{$.Team.LowerName}}/action/repo/add" method="post">
|
|
|
|
{{.CsrfTokenHtml}}
|
|
|
|
<div class="inline field ui left">
|
|
|
|
<div id="search-repo-box" data-uid="{{.Org.ID}}" class="ui search">
|
|
|
|
<div class="ui input">
|
|
|
|
<input class="prompt" name="repo_name" placeholder="{{.i18n.Tr "org.teams.search_repo_placeholder"}}" autocomplete="off" required>
|
|
|
|
</div>
|
2019-01-26 05:44:35 +05:30
|
|
|
</div>
|
|
|
|
</div>
|
2019-11-09 06:09:37 +05:30
|
|
|
<button class="ui green button">{{.i18n.Tr "add"}}</button>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
<div class="inline ui field right">
|
|
|
|
<form class="ui form" id="repo-multiple-form" action="{{$.OrgLink}}/teams/{{$.Team.LowerName}}/repositories" method="post">
|
|
|
|
<button class="ui red button delete-button right" data-url="{{$.OrgLink}}/teams/{{$.Team.LowerName}}/action/repo/removeall">{{.i18n.Tr "remove_all"}}</button>
|
|
|
|
<button class="ui green button add-all-button right" data-url="{{$.OrgLink}}/teams/{{$.Team.LowerName}}/action/repo/addall">{{.i18n.Tr "add_all"}}</button>
|
|
|
|
</form>
|
|
|
|
</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}}
|
|
|
|
<div class="item">
|
|
|
|
{{if $canAddRemove}}
|
2020-02-28 03:30:13 +05:30
|
|
|
<form method="post" action="{{$.OrgLink}}/teams/{{$.Team.LowerName}}/action/repo/remove">
|
2020-02-26 01:58:47 +05:30
|
|
|
{{$.CsrfTokenHtml}}
|
2020-02-28 03:30:13 +05:30
|
|
|
<button type="submit" class="ui red small button right" name="repoid" value="{{.ID}}">{{$.i18n.Tr "remove"}}</button>
|
2020-02-26 01:58:47 +05:30
|
|
|
</form>
|
2015-12-08 04:00:52 +05:30
|
|
|
{{end}}
|
|
|
|
<a class="member" href="{{AppSubUrl}}/{{$.Org.Name}}/{{.Name}}">
|
2020-02-11 22:32:41 +05:30
|
|
|
{{if .IsPrivate}}
|
2020-09-12 01:49:00 +05:30
|
|
|
{{svg "octicon-lock"}}
|
2020-02-11 22:32:41 +05:30
|
|
|
{{else if .IsFork}}
|
2020-09-12 01:49:00 +05:30
|
|
|
{{svg "octicon-repo-forked"}}
|
2020-02-11 22:32:41 +05:30
|
|
|
{{else if .IsMirror}}
|
2020-09-12 01:49:00 +05:30
|
|
|
{{svg "octicon-mirror"}}
|
2020-02-11 22:32:41 +05:30
|
|
|
{{else}}
|
2020-09-12 01:49:00 +05:30
|
|
|
{{svg "octicon-repo"}}
|
2020-02-11 22:32:41 +05:30
|
|
|
{{end}}
|
2015-12-08 04:00:52 +05:30
|
|
|
<strong>{{$.Org.Name}}/{{.Name}}</strong>
|
|
|
|
</a>
|
|
|
|
</div>
|
2018-12-09 12:12:11 +05:30
|
|
|
{{else}}
|
|
|
|
<div class="item">
|
|
|
|
<span class="text grey italic">{{$.i18n.Tr "org.teams.repos.none"}}</span>
|
|
|
|
</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
|
|
|
|
|
|
|
<div class="ui small basic delete modal">
|
|
|
|
<div class="ui icon header">
|
2021-03-22 09:34:19 +05:30
|
|
|
{{svg "octicon-trash"}}
|
2019-11-09 06:09:37 +05:30
|
|
|
{{.i18n.Tr "org.teams.remove_all_repos_title"}}
|
|
|
|
</div>
|
|
|
|
<div class="content">
|
|
|
|
<p>{{.i18n.Tr "org.teams.remove_all_repos_desc"}}</p>
|
|
|
|
</div>
|
|
|
|
{{template "base/delete_modal_actions" .}}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="ui small basic addall modal">
|
|
|
|
<div class="ui icon header">
|
|
|
|
<i class="globe icon"></i>
|
|
|
|
{{.i18n.Tr "org.teams.add_all_repos_title"}}
|
|
|
|
</div>
|
|
|
|
<div class="content">
|
|
|
|
<p>{{.i18n.Tr "org.teams.add_all_repos_desc"}}</p>
|
|
|
|
</div>
|
|
|
|
{{template "base/delete_modal_actions" .}}
|
|
|
|
</div>
|
|
|
|
|
2015-12-08 04:00:52 +05:30
|
|
|
{{template "base/footer" .}}
|