summaryrefslogtreecommitdiffstats
path: root/templates/org/team/repositories.tmpl
blob: 1f8d1a08f0011893db15891bcbc8c33410f60c19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{{template "base/head" .}}
<div class="organization teams">
	{{template "org/header" .}}
	<div class="ui container">
		{{template "base/alert" .}}
		<div class="ui grid">
			{{template "org/team/sidebar" .}}
			<div class="ui ten wide column">
				<div class="ui top attached header">
					{{.i18n.Tr "org.teams.repositories"}}
				</div>
				<div class="ui attached table segment repositories">
					{{$canAddRemove := and $.IsOrganizationOwner (not (eq $.Team.LowerName "owners"))}}
					{{range .Team.Repos}}
						<div class="item">
							{{if $canAddRemove}}
								<a class="ui red small button right" href="{{$.OrgLink}}/teams/{{$.Team.LowerName}}/action/repo/remove?repoid={{.ID}}">{{$.i18n.Tr "org.teams.remove_repo"}}</a>
							{{end}}
							<a class="member" href="{{AppSubUrl}}/{{$.Org.Name}}/{{.Name}}">
								<i class="icon octicon octicon-{{if .IsPrivate}}lock{{else if .IsFork}}repo-forked{{else if .IsMirror}}repo-clone{{else}}repo{{end}}"></i>
								<strong>{{$.Org.Name}}/{{.Name}}</strong>
							</a>
						</div>
					{{end}}
				</div>
				{{if $canAddRemove}}
					<div class="ui bottom attached segment">
						<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}}">
									<div class="ui input">
										<input class="prompt" name="repo_name" placeholder="{{.i18n.Tr "org.teams.search_repo_placeholder"}}" autocomplete="off" required>
									</div>
									<div class="ui segment results hide"></div>
								</div>
							</div>
							<button class="ui green button">{{.i18n.Tr "org.teams.add_team_repository"}}</button>
						</form>
					</div>
				{{end}}
			</div>
		</div>
	</div>
</div>
{{template "base/footer" .}}