2015-08-08 05:10:34 -04:00
|
|
|
{{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">
|
2015-12-07 17:30:52 -05:00
|
|
|
{{.CsrfTokenHtml}}
|
2015-08-08 05:10:34 -04:00
|
|
|
<h3 class="ui top attached header">
|
2015-12-07 17:30:52 -05:00
|
|
|
{{.i18n.Tr "new_fork"}}
|
2015-08-08 05:10:34 -04:00
|
|
|
</h3>
|
|
|
|
<div class="ui attached segment">
|
|
|
|
{{template "base/alert" .}}
|
2015-12-07 17:30:52 -05: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 13:08:22 -04:00
|
|
|
<input type="hidden" id="uid" name="uid" value="{{.ContextUser.ID}}" required>
|
2019-04-17 10:49:56 -04:00
|
|
|
<span class="text" title="{{.ContextUser.Name}}">
|
2016-08-05 15:12:54 -04:00
|
|
|
<img class="ui mini image" src="{{.ContextUser.RelAvatarLink}}">
|
2015-12-07 17:30:52 -05:00
|
|
|
{{.ContextUser.ShortName 20}}
|
|
|
|
</span>
|
|
|
|
<i class="dropdown icon"></i>
|
|
|
|
<div class="menu">
|
2017-10-15 11:06:07 -04:00
|
|
|
{{if .CanForkToUser}}
|
2019-04-17 10:49:56 -04:00
|
|
|
<div class="item" data-value="{{.SignedUser.ID}}" title="{{.SignedUser.Name}}">
|
2017-10-15 11:06:07 -04:00
|
|
|
<img class="ui mini image" src="{{.SignedUser.RelAvatarLink}}">
|
|
|
|
{{.SignedUser.ShortName 20}}
|
|
|
|
</div>
|
|
|
|
{{end}}
|
2015-12-07 17:30:52 -05:00
|
|
|
{{range .Orgs}}
|
2019-04-17 10:49:56 -04:00
|
|
|
<div class="item" data-value="{{.ID}}" title="{{.Name}}">
|
2017-10-15 11:06:07 -04:00
|
|
|
<img class="ui mini image" src="{{.RelAvatarLink}}">
|
|
|
|
{{.ShortName 20}}
|
|
|
|
</div>
|
2015-12-07 17:30:52 -05:00
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2015-08-08 05:10:34 -04:00
|
|
|
|
2015-12-07 17:30:52 -05:00
|
|
|
<div class="inline field">
|
|
|
|
<label>{{.i18n.Tr "repo.fork_from"}}</label>
|
2015-08-08 05:10:34 -04:00
|
|
|
<a href="{{AppSubUrl}}/{{.ForkFrom}}">{{.ForkFrom}}</a>
|
2015-12-07 17:30:52 -05: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 07:43:21 -04:00
|
|
|
<label>{{.i18n.Tr "repo.visibility_helper" | Safe}}</label>
|
2015-12-07 17:30:52 -05:00
|
|
|
</div>
|
2018-07-04 07:43:21 -04:00
|
|
|
<span class="help">{{.i18n.Tr "repo.fork_visibility_helper"}}</span>
|
2015-12-07 17:30:52 -05: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 05:10:34 -04:00
|
|
|
|
2015-12-07 17:30:52 -05: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 05:10:34 -04:00
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2015-12-07 17:30:52 -05:00
|
|
|
{{template "base/footer" .}}
|