2015-08-08 09:10:34 +00:00
|
|
|
{{template "base/head" .}}
|
2020-12-01 04:00:14 +00:00
|
|
|
<div class="page-content repository new fork">
|
2015-08-08 09:10:34 +00:00
|
|
|
<div class="ui middle very relaxed page grid">
|
|
|
|
<div class="column">
|
|
|
|
<form class="ui form" action="{{.Link}}" method="post">
|
2015-12-07 22:30:52 +00:00
|
|
|
{{.CsrfTokenHtml}}
|
2015-08-08 09:10:34 +00:00
|
|
|
<h3 class="ui top attached header">
|
2015-12-07 22:30:52 +00:00
|
|
|
{{.i18n.Tr "new_fork"}}
|
2015-08-08 09:10:34 +00:00
|
|
|
</h3>
|
|
|
|
<div class="ui attached segment">
|
|
|
|
{{template "base/alert" .}}
|
2015-12-07 22:30:52 +00:00
|
|
|
<div class="inline required field {{if .Err_Owner}}error{{end}}">
|
|
|
|
<label>{{.i18n.Tr "repo.owner"}}</label>
|
|
|
|
<div class="ui selection owner dropdown">
|
2016-07-23 17:08:22 +00:00
|
|
|
<input type="hidden" id="uid" name="uid" value="{{.ContextUser.ID}}" required>
|
2021-02-12 01:29:07 +00:00
|
|
|
<span class="text truncated-item-container" title="{{.ContextUser.Name}}">
|
2020-12-03 18:46:11 +00:00
|
|
|
{{avatar .ContextUser 28 "mini"}}
|
2021-02-12 01:29:07 +00:00
|
|
|
<span class="truncated-item-name">{{.ContextUser.ShortName 40}}</span>
|
2015-12-07 22:30:52 +00:00
|
|
|
</span>
|
2020-10-31 22:15:11 +00:00
|
|
|
{{svg "octicon-triangle-down" 14 "dropdown icon"}}
|
2015-12-07 22:30:52 +00:00
|
|
|
<div class="menu">
|
2017-10-15 15:06:07 +00:00
|
|
|
{{if .CanForkToUser}}
|
2021-02-12 01:29:07 +00:00
|
|
|
<div class="item truncated-item-container" data-value="{{.SignedUser.ID}}" title="{{.SignedUser.Name}}">
|
2020-12-03 18:46:11 +00:00
|
|
|
{{avatar .SignedUser 28 "mini"}}
|
2021-02-12 01:29:07 +00:00
|
|
|
<span class="truncated-item-name">{{.SignedUser.ShortName 40}}</span>
|
2017-10-15 15:06:07 +00:00
|
|
|
</div>
|
|
|
|
{{end}}
|
2015-12-07 22:30:52 +00:00
|
|
|
{{range .Orgs}}
|
2021-02-12 01:29:07 +00:00
|
|
|
<div class="item truncated-item-container" data-value="{{.ID}}" title="{{.Name}}">
|
2020-12-03 18:46:11 +00:00
|
|
|
{{avatar . 28 "mini"}}
|
2021-02-12 01:29:07 +00:00
|
|
|
<span class="truncated-item-name">{{.ShortName 40}}</span>
|
2017-10-15 15:06:07 +00:00
|
|
|
</div>
|
2015-12-07 22:30:52 +00:00
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2015-08-08 09:10:34 +00:00
|
|
|
|
2015-12-07 22:30:52 +00:00
|
|
|
<div class="inline field">
|
|
|
|
<label>{{.i18n.Tr "repo.fork_from"}}</label>
|
2015-08-08 09:10:34 +00:00
|
|
|
<a href="{{AppSubUrl}}/{{.ForkFrom}}">{{.ForkFrom}}</a>
|
2015-12-07 22:30:52 +00:00
|
|
|
</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}}>
|
2018-07-04 11:43:21 +00:00
|
|
|
<label>{{.i18n.Tr "repo.visibility_helper" | Safe}}</label>
|
2015-12-07 22:30:52 +00:00
|
|
|
</div>
|
2018-07-04 11:43:21 +00:00
|
|
|
<span class="help">{{.i18n.Tr "repo.fork_visibility_helper"}}</span>
|
2015-12-07 22:30:52 +00:00
|
|
|
</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>
|
2015-08-08 09:10:34 +00:00
|
|
|
|
2015-12-07 22:30:52 +00:00
|
|
|
<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>
|
2015-08-08 09:10:34 +00:00
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2015-12-07 22:30:52 +00:00
|
|
|
{{template "base/footer" .}}
|