2014-08-01 06:06:19 +02:00
|
|
|
{{template "ng/base/head" .}}
|
|
|
|
{{template "ng/base/header" .}}
|
|
|
|
<div id="repo-wrapper">
|
2014-09-20 02:11:34 +02:00
|
|
|
<form id="repo-migrate-form" class="form form-align panel panel-radius" action="{{AppSubUrl}}/repo/migrate" method="post">
|
2014-04-09 15:28:00 +02:00
|
|
|
{{.CsrfTokenHtml}}
|
2014-08-01 06:06:19 +02:00
|
|
|
<div class="panel-header"><h2>{{.i18n.Tr "new_migrate"}}</h2></div>
|
|
|
|
<div class="panel-content">
|
|
|
|
{{template "ng/base/alert" .}}
|
|
|
|
<div class="field">
|
|
|
|
<label class="req" for="url">HTTPS URL</label>
|
2014-08-02 19:47:33 +02:00
|
|
|
<input class="ipt ipt-large ipt-radius {{if .Err_HttpsUrl}}ipt-error{{end}}" id="url" name="url" type="text" value="{{.url}}" required />
|
2014-04-09 15:28:00 +02:00
|
|
|
</div>
|
2014-08-01 06:06:19 +02:00
|
|
|
<div class="field">
|
|
|
|
<span class="form-label"></span>
|
|
|
|
<button class="btn btn-large btn-gray btn-radius" id="auth-button" data-toggle="collapse" data-target="#repo-import-auth">{{.i18n.Tr "repo.need_auth"}}</button>
|
|
|
|
<div id="repo-migrate-auth" {{if not .Err_Auth}}class="hide"{{end}}>
|
|
|
|
<div class="field">
|
|
|
|
<label for="auth_username">{{.i18n.Tr "username"}}</label>
|
2014-08-02 19:47:33 +02:00
|
|
|
<input class="ipt ipt-large ipt-radius {{if .Err_Auth}}ipt-error{{end}}" id="auth_username" name="auth_username" type="text" value="{{.auth_username}}" />
|
2014-04-09 15:28:00 +02:00
|
|
|
</div>
|
2014-08-01 06:06:19 +02:00
|
|
|
<div class="field">
|
|
|
|
<label for="auth_password">{{.i18n.Tr "password"}}</label>
|
2014-08-27 16:40:45 +02:00
|
|
|
<input class="ipt ipt-large ipt-radius {{if .Err_Auth}}ipt-error{{end}}" id="auth_password" name="auth_password" type="password" value="{{.auth_password}}" />
|
2014-06-25 11:35:23 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
2014-04-09 15:28:00 +02:00
|
|
|
</div>
|
2014-08-01 06:06:19 +02:00
|
|
|
<hr/>
|
|
|
|
<div class="field">
|
|
|
|
<label for="owner" class="req">{{.i18n.Tr "repo.owner"}}</label>
|
|
|
|
<input id="repo-owner-id" type="hidden" name="uid" value="{{.ContextUser.Id}}" />
|
|
|
|
<div class="inline-block drop">
|
|
|
|
<a href="#" class="drop-bottom">
|
|
|
|
<img class="avatar" src="{{.ContextUser.AvatarLink}}" id="repo-owner-avatar" alt="user-avatar">
|
|
|
|
<strong id="repo-owner-name">{{.ContextUser.Name}}</strong>
|
|
|
|
</a>
|
|
|
|
<ul class="drop-down menu menu-vertical menu-radius switching-list" id="repo-create-owner-list">
|
|
|
|
<li {{if eq $.ContextUser.Id .SignedUser.Id}}class="checked"{{end}} data-uid="{{.SignedUser.Id}}">
|
|
|
|
<a>
|
|
|
|
<i class="octicon octicon-check"></i>
|
|
|
|
<img class="avatar" src="{{.SignedUser.AvatarLink}}" alt="user-avatar">
|
|
|
|
<strong>{{.SignedUser.Name}}</strong>
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
{{range .Orgs}}
|
|
|
|
<li {{if eq $.ContextUser.Id .Id}}class="checked"{{end}} data-uid="{{.Id}}">
|
|
|
|
<a>
|
|
|
|
<i class="octicon octicon-check"></i>
|
|
|
|
<img class="avatar" src="{{.AvatarLink}}" alt="user-avatar">
|
|
|
|
<strong>{{.Name}}</strong>
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
{{end}}
|
|
|
|
</ul>
|
2014-04-13 02:35:35 +02:00
|
|
|
</div>
|
2014-04-09 15:28:00 +02:00
|
|
|
</div>
|
2014-08-01 06:06:19 +02:00
|
|
|
<div class="field">
|
|
|
|
<label class="req" for="repo-name">{{.i18n.Tr "repo.repo_name"}}</label>
|
2014-08-02 19:47:33 +02:00
|
|
|
<input class="ipt ipt-large ipt-radius {{if .Err_RepoName}}ipt-error{{end}}" id="repo-name" name="repo_name" type="text" value="{{.repo_name}}" required />
|
2014-04-09 15:28:00 +02:00
|
|
|
</div>
|
2014-08-02 19:47:33 +02:00
|
|
|
<div class="field">
|
2014-08-01 06:06:19 +02:00
|
|
|
<label for="visibility">{{.i18n.Tr "repo.visibility"}}</label>
|
|
|
|
<input class="ipt-chk" id="visibility" name="private" type="checkbox" {{if .private}}checked{{end}} />
|
|
|
|
<span>{{.i18n.Tr "repo.visiblity_helper" | Str2html}}</span>
|
2014-08-02 19:47:33 +02:00
|
|
|
</div>
|
|
|
|
<div class="field">
|
|
|
|
<label for="migrate_type">{{.i18n.Tr "repo.migrate_type"}}</label>
|
|
|
|
<input class="ipt-chk" id="migrate_type" name="mirror" type="checkbox" {{if .mirror}}checked{{end}} />
|
2014-08-01 06:06:19 +02:00
|
|
|
<span>{{.i18n.Tr "repo.migrate_type_helper" | Str2html}}</span>
|
2014-08-02 19:47:33 +02:00
|
|
|
</div>
|
2014-08-01 06:06:19 +02:00
|
|
|
<div class="field clear">
|
|
|
|
<label class="left" for="desc">{{.i18n.Tr "repo.repo_desc"}}</label>
|
2014-08-02 19:47:33 +02:00
|
|
|
<textarea class="ipt ipt-large ipt-radius {{if .Err_Description}}ipt-error{{end}}" id="desc" name="desc">{{.desc}}</textarea>
|
2014-04-09 15:28:00 +02:00
|
|
|
</div>
|
2014-08-02 19:47:33 +02:00
|
|
|
<div class="field">
|
2014-08-01 06:06:19 +02:00
|
|
|
<label for="repo-create-submit"></label>
|
|
|
|
<button class="btn btn-large btn-blue btn-radius" id="repo-create-submit">{{.i18n.Tr "repo.migrate_repo"}}</button>
|
2014-09-20 02:11:34 +02:00
|
|
|
<a class="btn btn-small btn-gray btn-radius" id="repo-create-cancel" href="{{AppSubUrl}}/"><strong>{{.i18n.Tr "cancel"}}</strong></a>
|
2014-08-02 19:47:33 +02:00
|
|
|
</div>
|
2014-04-09 15:28:00 +02:00
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
2014-08-01 06:06:19 +02:00
|
|
|
{{template "ng/base/footer" .}}
|