summaryrefslogtreecommitdiffstats
path: root/templates/user/settings/repos.tmpl
blob: 5e11f58988bdfb6c593a3c2108f80e3e01aa6733 (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{{template "user/settings/layout_head" (dict "ctxData" . "pageClass" "user settings repos")}}
	<div class="user-setting-content">
		<h4 class="ui top attached header">
			{{.locale.Tr "settings.repos"}}
		</h4>
		<div class="ui attached segment">
			{{if or .allowAdopt .allowDelete}}
				{{if .Dirs}}
					<div class="ui middle aligned divided list">
						{{range $dirI, $dir := .Dirs}}
							{{$repo := index $.ReposMap $dir}}
							<div class="item">
								<div class="content">
									{{if $repo}}
										{{if $repo.IsPrivate}}
											<span class="text gold icon">{{svg "octicon-lock"}}</span>
										{{else if $repo.IsFork}}
											<span class="icon">{{svg "octicon-repo-forked"}}</span>
										{{else if $repo.IsMirror}}
											<span class="icon">{{svg "octicon-mirror"}}</span>
										{{else if $repo.IsTemplate}}
											<span class="icon">{{svg "octicon-repo-template"}}</span>
										{{else}}
											<span class="icon">{{svg "octicon-repo"}}</span>
										{{end}}
										<a class="name" href="{{$repo.Link}}">{{$repo.OwnerName}}/{{$repo.Name}}</a>
										<span>{{FileSize $repo.Size}}</span>
										{{if $repo.IsFork}}
											{{$.locale.Tr "repo.forked_from"}}
											<span><a href="{{$repo.BaseRepo.Link}}">{{$repo.BaseRepo.OwnerName}}/{{$repo.BaseRepo.Name}}</a></span>
										{{end}}
									{{else}}
										<span class="icon">{{svg "octicon-file-directory-fill"}}</span>
										<span class="name">{{$.ContextUser.Name}}/{{$dir}}</span>
										<div class="right floated content">
											{{if $.allowAdopt}}
												<button class="ui button submit tiny green adopt show-modal" data-modal="#adopt-unadopted-modal-{{$dirI}}"><span class="icon">{{svg "octicon-plus"}}</span><span class="label">{{$.locale.Tr "repo.adopt_preexisting_label"}}</span></button>
												<div class="ui gitea-confirm-modal modal" id="adopt-unadopted-modal-{{$dirI}}">
													<div class="header">
														<span class="label">{{$.locale.Tr "repo.adopt_preexisting"}}</span>
													</div>
													<div class="content">
														<p>{{$.locale.Tr "repo.adopt_preexisting_content" $dir}}</p>
													</div>
													<form class="ui form" method="POST" action="{{AppSubUrl}}/user/settings/repos/unadopted">
														{{$.CsrfTokenHtml}}
														<input type="hidden" name="id" value="{{$dir}}">
														<input type="hidden" name="action" value="adopt">
														<div class="actions">{{/* TODO: Convert to base/modal_actions_confirm */}}
															<button class="ui red basic inverted cancel button">
																{{svg "octicon-x"}}
																{{$.locale.Tr "modal.no"}}
															</button>
															<button class="ui green basic inverted ok button">
																{{svg "octicon-check"}}
																{{$.locale.Tr "modal.yes"}}
															</button>
														</div>
													</form>
												</div>
											{{end}}
											{{if $.allowDelete}}
												<button class="ui button submit tiny red delete show-modal" data-modal="#delete-unadopted-modal-{{$dirI}}"><span class="icon">{{svg "octicon-x"}}</span><span class="label">{{$.locale.Tr "repo.delete_preexisting_label"}}</span></button>
												<div class="ui gitea-confirm-modal modal" id="delete-unadopted-modal-{{$dirI}}">
													<div class="header">
														<span class="label">{{$.locale.Tr "repo.delete_preexisting"}}</span>
													</div>
													<div class="content">
														<p>{{$.locale.Tr "repo.delete_preexisting_content" $dir}}</p>
													</div>
													<form class="ui form" method="POST" action="{{AppSubUrl}}/user/settings/repos/unadopted">
														{{$.CsrfTokenHtml}}
														<input type="hidden" name="id" value="{{$dir}}">
														<input type="hidden" name="action" value="delete">
														{{template "base/modal_actions_confirm" $}}
													</form>
												</div>
											{{end}}
										</div>
									{{end}}
								</div>
							</div>
						{{end}}
					</div>
					{{template "base/paginate" .}}
				{{else}}
					<div class="item">
						{{.locale.Tr "settings.repos_none"}}
					</div>
				{{end}}
			{{else}}
				{{if .Repos}}
					<div class="ui middle aligned divided list">
						{{range .Repos}}
							<div class="item">
								<div class="content">
									{{if .IsPrivate}}
										{{svg "octicon-lock" 16 "gt-mr-2 iconFloat text gold"}}
									{{else if .IsFork}}
										{{svg "octicon-repo-forked" 16 "gt-mr-2 iconFloat"}}
									{{else if .IsMirror}}
										{{svg "octicon-mirror" 16 "gt-mr-2 iconFloat"}}
									{{else if .IsTemplate}}
										{{svg "octicon-repo-template" 16 "gt-mr-2 iconFloat"}}
									{{else}}
										{{svg "octicon-repo" 16 "gt-mr-2 iconFloat"}}
									{{end}}
									<a class="name" href="{{.Link}}">{{.OwnerName}}/{{.Name}}</a>
									<span>{{FileSize .Size}}</span>
									{{if .IsFork}}
										{{$.locale.Tr "repo.forked_from"}}
										<span><a href="{{.BaseRepo.Link}}">{{.BaseRepo.OwnerName}}/{{.BaseRepo.Name}}</a></span>
									{{end}}
								</div>
							</div>
						{{end}}
					</div>
					{{template "base/paginate" .}}
				{{else}}
					<div class="item">
						{{.locale.Tr "settings.repos_none"}}
					</div>
				{{end}}
			{{end}}
		</div>
	</div>

<div class="ui gitea-confirm-modal delete modal">
	<div class="header">
		{{svg "octicon-trash"}}
		{{.locale.Tr "settings.remove_account_link"}}
	</div>
	<div class="content">
		<p>{{.locale.Tr "settings.remove_account_link_desc"}}</p>
	</div>
	{{template "base/modal_actions_confirm" .}}
</div>

{{template "user/settings/layout_footer" .}}