summaryrefslogtreecommitdiffstats
path: root/templates/repo/migrate.tmpl
blob: 7215960714da28980309f0ab1692cda5d8c440c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{{template "ng/base/head" .}}
{{template "ng/base/header" .}}
<div id="repo-wrapper">
    <form id="repo-migrate-form" class="form form-align panel panel-radius" action="/repo/migrate" method="post">
        {{.CsrfTokenHtml}}
        <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>
                <input class="ipt ipt-radius {{if .Err_HttpsUrl}}ipt-error{{end}}" id="url" name="url" type="text" value="{{.url}}" required />
            </div>
            <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>
                        <input class="ipt ipt-radius {{if .Err_Auth}}ipt-error{{end}}" id="auth_username" name="auth_username" type="text" value="{{.auth_username}}"  />
                    </div>
                    <div class="field">
                        <label for="auth_password">{{.i18n.Tr "password"}}</label>
                        <input class="ipt ipt-radius {{if .Err_Auth}}ipt-error{{end}}" id="auth_password" name="auth_password" type="text" value="{{.auth_password}}"  />
                    </div>
                </div>
            </div>
            <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>
                </div>
            </div>
            <div class="field">
                <label class="req" for="repo-name">{{.i18n.Tr "repo.repo_name"}}</label>
                <input class="ipt ipt-radius {{if .Err_RepoName}}ipt-error{{end}}" id="repo-name" name="repo_name" type="text" value="{{.repo_name}}" required />
            </div>
            <p class="field">
                <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>
            </p>
            <p class="field">
                <label for="visibility">{{.i18n.Tr "repo.migrate_type"}}</label>
                <input class="ipt-chk" id="visibility" name="mirror" type="checkbox" {{if .mirror}}checked{{end}} />
                <span>{{.i18n.Tr "repo.migrate_type_helper" | Str2html}}</span>
            </p>
            <div class="field clear">
                <label class="left" for="desc">{{.i18n.Tr "repo.repo_desc"}}</label>
                <textarea class="ipt ipt-radius {{if .Err_Description}}ipt-error{{end}}" id="desc" name="desc">{{.desc}}</textarea>
            </div>
            <p class="field">
                <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>
                <a class="btn btn-small btn-gray btn-radius" id="repo-create-cancel" href="/"><strong>{{.i18n.Tr "cancel"}}</strong></a>
            </p>
        </div>
    </form>
</div>
{{template "ng/base/footer" .}}