2015-08-15 08:03:20 +00:00
|
|
|
{{template "base/head" .}}
|
2020-12-01 04:00:14 +00:00
|
|
|
<div class="page-content repository new migrate">
|
2015-08-15 08:03:20 +00:00
|
|
|
<div class="ui middle very relaxed page grid">
|
|
|
|
<div class="column">
|
|
|
|
<form class="ui form" action="{{.Link}}" method="post">
|
2021-10-18 22:08:41 +00:00
|
|
|
{{template "base/disable_form_autofill"}}
|
2015-12-07 22:30:52 +00:00
|
|
|
{{.CsrfTokenHtml}}
|
2015-08-15 08:03:20 +00:00
|
|
|
<h3 class="ui top attached header">
|
2020-09-09 18:29:10 +00:00
|
|
|
{{.i18n.Tr "repo.migrate.migrate" .service.Title}}
|
|
|
|
<input id="service_type" type="hidden" name="service" value="{{.service}}">
|
2015-08-15 08:03:20 +00:00
|
|
|
</h3>
|
|
|
|
<div class="ui attached segment">
|
|
|
|
{{template "base/alert" .}}
|
|
|
|
<div class="inline required field {{if .Err_CloneAddr}}error{{end}}">
|
|
|
|
<label for="clone_addr">{{.i18n.Tr "repo.migrate.clone_address"}}</label>
|
|
|
|
<input id="clone_addr" name="clone_addr" value="{{.clone_addr}}" autofocus required>
|
2017-03-16 11:33:22 +00:00
|
|
|
<span class="help">
|
|
|
|
{{.i18n.Tr "repo.migrate.clone_address_desc"}}{{if .ContextUser.CanImportLocal}} {{.i18n.Tr "repo.migrate.clone_local_path"}}{{end}}
|
|
|
|
</span>
|
2015-12-07 22:30:52 +00:00
|
|
|
</div>
|
2020-08-28 01:36:37 +00:00
|
|
|
<div class="inline field {{if .Err_Auth}}error{{end}}">
|
|
|
|
<label for="auth_username">{{.i18n.Tr "username"}}</label>
|
|
|
|
<input id="auth_username" name="auth_username" value="{{.auth_username}}" {{if not .auth_username}}data-need-clear="true"{{end}}>
|
2015-12-07 22:30:52 +00:00
|
|
|
</div>
|
2020-08-28 01:36:37 +00:00
|
|
|
<div class="inline field {{if .Err_Auth}}error{{end}}">
|
|
|
|
<label for="auth_password">{{.i18n.Tr "password"}}</label>
|
|
|
|
<input id="auth_password" name="auth_password" type="password" value="{{.auth_password}}">
|
|
|
|
</div>
|
|
|
|
|
2021-04-08 22:25:57 +00:00
|
|
|
{{template "repo/migrate/options" .}}
|
2020-08-28 01:36:37 +00:00
|
|
|
|
|
|
|
<div class="ui divider"></div>
|
|
|
|
|
|
|
|
<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>
|
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}}
|
2021-02-12 01:29:07 +00:00
|
|
|
<span class="truncated-item-name">{{.ContextUser.ShortName 40}}</span>
|
2020-08-28 01:36:37 +00:00
|
|
|
</span>
|
2020-10-31 22:15:11 +00:00
|
|
|
{{svg "octicon-triangle-down" 14 "dropdown icon"}}
|
2020-08-28 01:36:37 +00:00
|
|
|
<div class="menu" title="{{.SignedUser.Name}}">
|
2021-02-12 01:29:07 +00:00
|
|
|
<div class="item truncated-item-container" data-value="{{.SignedUser.ID}}">
|
2020-12-03 18:46:11 +00:00
|
|
|
{{avatar .SignedUser}}
|
2021-02-12 01:29:07 +00:00
|
|
|
<span class="truncated-item-name">{{.SignedUser.ShortName 40}}</span>
|
2020-08-28 01:36:37 +00:00
|
|
|
</div>
|
|
|
|
{{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 .}}
|
2021-02-12 01:29:07 +00:00
|
|
|
<span class="truncated-item-name">{{.ShortName 40}}</span>
|
2020-08-28 01:36:37 +00:00
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</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 checkbox">
|
|
|
|
{{if .IsForcedPrivate}}
|
|
|
|
<input name="private" type="checkbox" checked readonly>
|
|
|
|
<label>{{.i18n.Tr "repo.visibility_helper_forced" | Safe}}</label>
|
|
|
|
{{else}}
|
|
|
|
<input name="private" type="checkbox" {{if .private}}checked{{end}}>
|
|
|
|
<label>{{.i18n.Tr "repo.visibility_helper" | Safe}}</label>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</div>
|
2015-12-07 22:30:52 +00:00
|
|
|
<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-15 08:03:20 +00:00
|
|
|
|
2015-12-07 22:30:52 +00:00
|
|
|
<div class="inline field">
|
|
|
|
<label></label>
|
|
|
|
<button class="ui green button">
|
|
|
|
{{.i18n.Tr "repo.migrate_repo"}}
|
|
|
|
</button>
|
|
|
|
<a class="ui button" href="{{AppSubUrl}}/">{{.i18n.Tr "cancel"}}</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
2015-08-15 08:03:20 +00:00
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
2014-04-09 13:28:00 +00:00
|
|
|
</div>
|
2015-12-07 22:30:52 +00:00
|
|
|
{{template "base/footer" .}}
|