2015-08-15 13:33:20 +05:30
|
|
|
{{template "base/head" .}}
|
2023-02-02 04:26:10 +05:30
|
|
|
<div role="main" aria-label="{{.Title}}" class="page-content repository new migrate">
|
2015-08-15 13:33:20 +05:30
|
|
|
<div class="ui middle very relaxed page grid">
|
|
|
|
<div class="column">
|
|
|
|
<form class="ui form" action="{{.Link}}" method="post">
|
2021-10-19 03:38:41 +05:30
|
|
|
{{template "base/disable_form_autofill"}}
|
2015-12-08 04:00:52 +05:30
|
|
|
{{.CsrfTokenHtml}}
|
2015-08-15 13:33:20 +05:30
|
|
|
<h3 class="ui top attached header">
|
2023-09-25 14:26:50 +05:30
|
|
|
{{ctx.Locale.Tr "repo.migrate.migrate" .service.Title}}
|
2020-09-09 23:59:10 +05:30
|
|
|
<input id="service_type" type="hidden" name="service" value="{{.service}}">
|
2015-08-15 13:33:20 +05:30
|
|
|
</h3>
|
|
|
|
<div class="ui attached segment">
|
|
|
|
{{template "base/alert" .}}
|
|
|
|
<div class="inline required field {{if .Err_CloneAddr}}error{{end}}">
|
2023-09-25 14:26:50 +05:30
|
|
|
<label for="clone_addr">{{ctx.Locale.Tr "repo.migrate.clone_address"}}</label>
|
2015-08-15 13:33:20 +05:30
|
|
|
<input id="clone_addr" name="clone_addr" value="{{.clone_addr}}" autofocus required>
|
2017-03-16 17:03:22 +05:30
|
|
|
<span class="help">
|
2023-09-25 18:12:40 +05:30
|
|
|
{{ctx.Locale.Tr "repo.migrate.clone_address_desc"}}{{if .ContextUser.CanImportLocal}} {{ctx.Locale.Tr "repo.migrate.clone_local_path"}}{{end}}
|
2017-03-16 17:03:22 +05:30
|
|
|
</span>
|
2015-12-08 04:00:52 +05:30
|
|
|
</div>
|
2020-08-28 07:06:37 +05:30
|
|
|
<div class="inline field {{if .Err_Auth}}error{{end}}">
|
2023-09-25 14:26:50 +05:30
|
|
|
<label for="auth_username">{{ctx.Locale.Tr "username"}}</label>
|
2020-08-28 07:06:37 +05:30
|
|
|
<input id="auth_username" name="auth_username" value="{{.auth_username}}" {{if not .auth_username}}data-need-clear="true"{{end}}>
|
2015-12-08 04:00:52 +05:30
|
|
|
</div>
|
2020-08-28 07:06:37 +05:30
|
|
|
<div class="inline field {{if .Err_Auth}}error{{end}}">
|
2023-09-25 14:26:50 +05:30
|
|
|
<label for="auth_password">{{ctx.Locale.Tr "password"}}</label>
|
2020-08-28 07:06:37 +05:30
|
|
|
<input id="auth_password" name="auth_password" type="password" value="{{.auth_password}}">
|
|
|
|
</div>
|
|
|
|
|
2021-04-09 03:55:57 +05:30
|
|
|
{{template "repo/migrate/options" .}}
|
2020-08-28 07:06:37 +05:30
|
|
|
|
2023-06-29 17:54:22 +05:30
|
|
|
<div class="divider"></div>
|
2020-08-28 07:06:37 +05:30
|
|
|
|
|
|
|
<div class="inline required field {{if .Err_Owner}}error{{end}}">
|
2023-09-25 14:26:50 +05:30
|
|
|
<label>{{ctx.Locale.Tr "repo.owner"}}</label>
|
2020-08-28 07:06:37 +05:30
|
|
|
<div class="ui selection owner dropdown">
|
|
|
|
<input type="hidden" id="uid" name="uid" value="{{.ContextUser.ID}}" required>
|
2021-02-12 06:59:07 +05:30
|
|
|
<span class="text truncated-item-container" title="{{.ContextUser.Name}}">
|
2023-08-10 08:49:39 +05:30
|
|
|
{{ctx.AvatarUtils.Avatar .ContextUser}}
|
2021-02-12 06:59:07 +05:30
|
|
|
<span class="truncated-item-name">{{.ContextUser.ShortName 40}}</span>
|
2020-08-28 07:06:37 +05:30
|
|
|
</span>
|
2020-11-01 03:45:11 +05:30
|
|
|
{{svg "octicon-triangle-down" 14 "dropdown icon"}}
|
2020-08-28 07:06:37 +05:30
|
|
|
<div class="menu" title="{{.SignedUser.Name}}">
|
2021-02-12 06:59:07 +05:30
|
|
|
<div class="item truncated-item-container" data-value="{{.SignedUser.ID}}">
|
2023-08-10 08:49:39 +05:30
|
|
|
{{ctx.AvatarUtils.Avatar .SignedUser}}
|
2021-02-12 06:59:07 +05:30
|
|
|
<span class="truncated-item-name">{{.SignedUser.ShortName 40}}</span>
|
2020-08-28 07:06:37 +05:30
|
|
|
</div>
|
|
|
|
{{range .Orgs}}
|
2021-02-12 06:59:07 +05:30
|
|
|
<div class="item truncated-item-container" data-value="{{.ID}}" title="{{.Name}}">
|
2023-08-10 08:49:39 +05:30
|
|
|
{{ctx.AvatarUtils.Avatar .}}
|
2021-02-12 06:59:07 +05:30
|
|
|
<span class="truncated-item-name">{{.ShortName 40}}</span>
|
2020-08-28 07:06:37 +05:30
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="inline required field {{if .Err_RepoName}}error{{end}}">
|
2023-09-25 14:26:50 +05:30
|
|
|
<label for="repo_name">{{ctx.Locale.Tr "repo.repo_name"}}</label>
|
2023-05-26 15:12:54 +05:30
|
|
|
<input id="repo_name" name="repo_name" value="{{.repo_name}}" required maxlength="100">
|
2020-08-28 07:06:37 +05:30
|
|
|
</div>
|
|
|
|
<div class="inline field">
|
2023-09-25 14:26:50 +05:30
|
|
|
<label>{{ctx.Locale.Tr "repo.visibility"}}</label>
|
2020-08-28 07:06:37 +05:30
|
|
|
<div class="ui checkbox">
|
|
|
|
{{if .IsForcedPrivate}}
|
|
|
|
<input name="private" type="checkbox" checked readonly>
|
2023-09-25 14:26:50 +05:30
|
|
|
<label>{{ctx.Locale.Tr "repo.visibility_helper_forced" | Safe}}</label>
|
2020-08-28 07:06:37 +05:30
|
|
|
{{else}}
|
|
|
|
<input name="private" type="checkbox" {{if .private}}checked{{end}}>
|
2023-09-25 14:26:50 +05:30
|
|
|
<label>{{ctx.Locale.Tr "repo.visibility_helper" | Safe}}</label>
|
2020-08-28 07:06:37 +05:30
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</div>
|
2015-12-08 04:00:52 +05:30
|
|
|
<div class="inline field {{if .Err_Description}}error{{end}}">
|
2023-09-25 14:26:50 +05:30
|
|
|
<label for="description">{{ctx.Locale.Tr "repo.repo_desc"}}</label>
|
2023-05-26 15:12:54 +05:30
|
|
|
<textarea id="description" name="description" maxlength="2048">{{.description}}</textarea>
|
2015-12-08 04:00:52 +05:30
|
|
|
</div>
|
2015-08-15 13:33:20 +05:30
|
|
|
|
2015-12-08 04:00:52 +05:30
|
|
|
<div class="inline field">
|
|
|
|
<label></label>
|
2023-09-19 03:35:31 +05:30
|
|
|
<button class="ui primary button">
|
2023-09-25 14:26:50 +05:30
|
|
|
{{ctx.Locale.Tr "repo.migrate_repo"}}
|
2015-12-08 04:00:52 +05:30
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
2015-08-15 13:33:20 +05:30
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
2014-04-09 18:58:00 +05:30
|
|
|
</div>
|
2015-12-08 04:00:52 +05:30
|
|
|
{{template "base/footer" .}}
|