74a6add4d9
* Start work on templates Signed-off-by: jolheiser <john.olheiser@gmail.com> * Continue work Signed-off-by: jolheiser <john.olheiser@gmail.com> * Fix IsTemplate vs IsGenerated Signed-off-by: jolheiser <john.olheiser@gmail.com> * Fix tabs vs spaces * Tabs vs Spaces * Add templates to API & start adding tests Signed-off-by: jolheiser <john.olheiser@gmail.com> * Fix integration tests Signed-off-by: jolheiser <john.olheiser@gmail.com> * Remove unused User Signed-off-by: jolheiser <john.olheiser@gmail.com> * Move template tests to existing repos Signed-off-by: jolheiser <john.olheiser@gmail.com> * Minor re-check updates and cleanup Signed-off-by: jolheiser <john.olheiser@gmail.com> * make fmt Signed-off-by: jolheiser <john.olheiser@gmail.com> * Test cleanup Signed-off-by: jolheiser <john.olheiser@gmail.com> * Fix optionalbool Signed-off-by: jolheiser <john.olheiser@gmail.com> * make fmt Signed-off-by: jolheiser <john.olheiser@gmail.com> * Test fixes and icon change Signed-off-by: jolheiser <john.olheiser@gmail.com> * Add new user and repo for tests Signed-off-by: jolheiser <john.olheiser@gmail.com> * Fix tests (finally) Signed-off-by: jolheiser <john.olheiser@gmail.com> * Update meta repo with env variables Signed-off-by: jolheiser <john.olheiser@gmail.com> * Move generation to create page Combine with repo create template Modify API search to prioritize owner for repo Signed-off-by: jolheiser <john.olheiser@gmail.com> * Fix tests and coverage Signed-off-by: jolheiser <john.olheiser@gmail.com> * Fix swagger and JS lint Signed-off-by: jolheiser <john.olheiser@gmail.com> * Fix API searching for own private repos Signed-off-by: jolheiser <john.olheiser@gmail.com> * Change wording Signed-off-by: jolheiser <john.olheiser@gmail.com> * Fix repo search test. User had a private repo that didn't show up Signed-off-by: jolheiser <john.olheiser@gmail.com> * Another search test fix Signed-off-by: jolheiser <john.olheiser@gmail.com> * Clarify git content Co-Authored-By: guillep2k <18600385+guillep2k@users.noreply.github.com> * Feedback updates Signed-off-by: jolheiser <john.olheiser@gmail.com> * Add topics WIP Signed-off-by: jolheiser <john.olheiser@gmail.com> * Finish adding topics Signed-off-by: jolheiser <john.olheiser@gmail.com> * Update locale Signed-off-by: jolheiser <john.olheiser@gmail.com>
161 lines
6 KiB
Cheetah
161 lines
6 KiB
Cheetah
{{template "base/head" .}}
|
|
<div class="repository new repo">
|
|
<div class="ui middle very relaxed page grid">
|
|
<div class="column">
|
|
<form class="ui form" action="{{.Link}}" method="post">
|
|
{{.CsrfTokenHtml}}
|
|
<h3 class="ui top attached header">
|
|
{{.i18n.Tr "new_repo"}}
|
|
</h3>
|
|
<div class="ui attached segment">
|
|
{{template "base/alert" .}}
|
|
<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>
|
|
<span class="text" title="{{.ContextUser.Name}}">
|
|
<img class="ui mini image" src="{{.ContextUser.RelAvatarLink}}">
|
|
{{.ContextUser.ShortName 20}}
|
|
</span>
|
|
<i class="dropdown icon"></i>
|
|
<div class="menu">
|
|
<div class="item" data-value="{{.SignedUser.ID}}" title="{{.SignedUser.Name}}">
|
|
<img class="ui mini image" src="{{.SignedUser.RelAvatarLink}}">
|
|
{{.SignedUser.ShortName 20}}
|
|
</div>
|
|
{{range .Orgs}}
|
|
<div class="item" data-value="{{.ID}}" title="{{.Name}}">
|
|
<img class="ui mini image" src="{{.RelAvatarLink}}">
|
|
{{.ShortName 20}}
|
|
</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}}" autofocus required>
|
|
<span class="help">{{.i18n.Tr "repo.repo_name_helper"}}</span>
|
|
</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>
|
|
<span class="help">{{.i18n.Tr "repo.visibility_description"}}</span>
|
|
</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>
|
|
<div class="inline field">
|
|
<label>{{.i18n.Tr "repo.template"}}</label>
|
|
<div id="repo_template_search" class="ui search normal selection dropdown">
|
|
<input type="hidden" id="repo_template" name="repo_template" value="{{.repo_template}}">
|
|
<div class="default text">{{.repo_template_name}}</div>
|
|
<div class="menu">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="template_units" style="display: none;">
|
|
<div class="inline field">
|
|
<label>{{.i18n.Tr "repo.template.items"}}</label>
|
|
<div class="ui checkbox">
|
|
<input class="hidden" name="git_content" type="checkbox" tabindex="0" {{if .git_content}}checked{{end}}>
|
|
<label>{{.i18n.Tr "repo.template.git_content"}}</label>
|
|
</div>
|
|
</div>
|
|
<div class="inline field">
|
|
<label></label>
|
|
<div class="ui checkbox">
|
|
<input class="hidden" name="topics" type="checkbox" tabindex="0" {{if .topics}}checked{{end}}>
|
|
<label>{{.i18n.Tr "repo.template.topics"}}</label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="non_template">
|
|
<div class="inline field">
|
|
<label>{{.i18n.Tr "repo.issue_labels"}}</label>
|
|
<div class="ui search normal selection dropdown">
|
|
<input type="hidden" name="issue_labels" value="{{.issueLabels}}">
|
|
<div class="default text">{{.i18n.Tr "repo.issue_labels_helper"}}</div>
|
|
<div class="menu">
|
|
<div class="item" data-value="">{{.i18n.Tr "repo.issue_labels_helper"}}</div>
|
|
{{range .LabelTemplates}}
|
|
<div class="item" data-value="{{.}}">{{.}}</div>
|
|
{{end}}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="ui divider"></div>
|
|
|
|
<div class="inline field">
|
|
<label>.gitignore</label>
|
|
<div class="ui multiple search normal selection dropdown">
|
|
<input type="hidden" name="gitignores" value="{{.gitignores}}">
|
|
<div class="default text">{{.i18n.Tr "repo.repo_gitignore_helper"}}</div>
|
|
<div class="menu">
|
|
{{range .Gitignores}}
|
|
<div class="item" data-value="{{.}}">{{.}}</div>
|
|
{{end}}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="inline field">
|
|
<label>{{.i18n.Tr "repo.license"}}</label>
|
|
<div class="ui search selection dropdown">
|
|
<input type="hidden" name="license" value="{{.license}}">
|
|
<div class="default text">{{.i18n.Tr "repo.license_helper"}}</div>
|
|
<div class="menu">
|
|
<div class="item" data-value="">{{.i18n.Tr "repo.license_helper"}}</div>
|
|
{{range .Licenses}}
|
|
<div class="item" data-value="{{.}}">{{.}}</div>
|
|
{{end}}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="inline field">
|
|
<label>{{.i18n.Tr "repo.readme"}}</label>
|
|
<div class="ui selection dropdown">
|
|
<input type="hidden" name="readme" value="{{.readme}}">
|
|
<div class="default text">{{.i18n.Tr "repo.readme_helper"}}</div>
|
|
<div class="menu">
|
|
{{range .Readmes}}
|
|
<div class="item" data-value="{{.}}">{{.}}</div>
|
|
{{end}}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="inline field">
|
|
<div class="ui checkbox" id="auto-init">
|
|
<input class="hidden" name="auto_init" type="checkbox" tabindex="0" {{if .auto_init}}checked{{end}}>
|
|
<label>{{.i18n.Tr "repo.auto_init"}}</label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<br/>
|
|
<div class="inline field">
|
|
<label></label>
|
|
<button class="ui green button">
|
|
{{.i18n.Tr "repo.create_repo"}}
|
|
</button>
|
|
<a class="ui button" href="{{AppSubUrl}}/">{{.i18n.Tr "cancel"}}</a>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{template "base/footer" .}}
|