aboutsummaryrefslogtreecommitdiffstats
path: root/templates/repo/pulls/fork.tmpl
blob: 431f6df236fc7ee4d41249c601a06727bfb76ac3 (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
{{template "base/head" .}}
<div class="repository new fork">
	<div class="ui middle very relaxed page grid">
		<div class="column">
			<form class="ui form" action="{{.Link}}" method="post">
				{{.CsrfTokenHtml}}
				<h3 class="ui top attached header">
					{{.i18n.Tr "new_fork"}}
				</h3>
				<div class="ui attached segment">
					{{template "base/alert" .}}
					<div class="inline required field {{if .Err_Owner}}error{{end}}">
						<label>{{.i18n.Tr "repo.owner"}}</label>
						<div class="ui selection owner dropdown">
							<input type="hidden" id="uid" name="uid" value="{{.ContextUser.ID}}" required>
							<span class="text">
								<img class="ui mini image" src="{{.ContextUser.RelAvatarLink}}">
								{{.ContextUser.ShortName 20}}
							</span>
							<i class="dropdown icon"></i>
							<div class="menu">
								<div class="item" data-value="{{.SignedUser.ID}}">
									<img class="ui mini image" src="{{.SignedUser.RelAvatarLink}}">
									{{.SignedUser.ShortName 20}}
								</div>
								{{range .Orgs}}
									{{if .IsOwnedBy $.SignedUser.ID}}
										<div class="item" data-value="{{.ID}}">
											<img class="ui mini image" src="{{.RelAvatarLink}}">
											{{.ShortName 20}}
										</div>
									{{end}}
								{{end}}
							</div>
						</div>
					</div>

					<div class="inline field">
						<label>{{.i18n.Tr "repo.fork_from"}}</label>
						<a href="{{AppSubUrl}}/{{.ForkFrom}}">{{.ForkFrom}}</a>
					</div>
					<div class="inline required field {{if .Err_RepoName}}error{{end}}">
						<label for="repo_name">{{.i18n.Tr "repo.repo_name"}}</label>
						<input id="repo_name" name="repo_name" value="{{.repo_name}}" required>
					</div>
					<div class="inline field">
						<label>{{.i18n.Tr "repo.visibility"}}</label>
						<div class="ui read-only checkbox">
							<input type="checkbox" {{if .IsPrivate}}checked{{end}}>
							<label>{{.i18n.Tr "repo.visiblity_helper" | Safe}}</label>
						</div>
						<span class="help">{{.i18n.Tr "repo.fork_visiblity_helper"}}</span>
					</div>
					<div class="inline field {{if .Err_Description}}error{{end}}">
						<label for="description">{{.i18n.Tr "repo.repo_desc"}}</label>
						<textarea id="description" name="description">{{.description}}</textarea>
					</div>

					<div class="inline field">
						<label></label>
						<button class="ui green button">
							{{.i18n.Tr "repo.fork_repo"}}
						</button>
						<a class="ui button" href="{{AppSubUrl}}/{{.ForkFrom}}">{{.i18n.Tr "cancel"}}</a>
					</div>
				</div>
			</form>
		</div>
	</div>
</div>
{{template "base/footer" .}}