2014-02-20 03:45:43 +01:00
|
|
|
{{template "base/head" .}}
|
|
|
|
{{template "base/navbar" .}}
|
2014-03-25 11:44:37 +01:00
|
|
|
<div class="container" id="body">
|
|
|
|
<form action="/repo/create" method="post" class="form-horizontal card" id="repo-create">
|
2014-03-22 18:44:02 +01:00
|
|
|
{{.CsrfTokenHtml}}
|
2014-03-02 17:22:20 +01:00
|
|
|
<h3>Create New Repository</h3>
|
2014-04-11 00:09:57 +02:00
|
|
|
{{template "base/alert" .}}
|
2014-03-02 17:22:20 +01:00
|
|
|
<div class="form-group">
|
|
|
|
<label class="col-md-2 control-label">Owner<strong class="text-danger">*</strong></label>
|
|
|
|
<div class="col-md-8">
|
2014-06-25 06:22:08 +02:00
|
|
|
<div class="btn-group" id="repo-owner-switch">
|
|
|
|
<button type="button" class="btn btn-default">
|
2014-06-25 06:53:45 +02:00
|
|
|
<img src="{{.SignedUser.AvatarLink}}?s=28" alt="user-avatar" title="username">
|
|
|
|
{{.SignedUser.Name}}
|
2014-06-25 06:22:08 +02:00
|
|
|
</button>
|
|
|
|
<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
|
|
|
|
<span class="caret"></span>
|
|
|
|
</button>
|
|
|
|
<div class="dropdown-menu clone-group-btn no-propagation">
|
|
|
|
<ul id="dashboard-switch-menu" class="list-unstyled">
|
2014-06-25 06:53:45 +02:00
|
|
|
<li data-uid="{{.SignedUser.Id}}" class="checked">
|
2014-06-25 09:55:59 +02:00
|
|
|
<a>
|
2014-06-25 06:53:45 +02:00
|
|
|
<i class="fa fa-check"></i>
|
|
|
|
<img src="{{.SignedUser.AvatarLink}}?s=28" alt="user-avatar" title="username">
|
|
|
|
{{.SignedUser.Name}}
|
|
|
|
</a>
|
|
|
|
</li>
|
2014-06-25 09:55:59 +02:00
|
|
|
{{range .Orgs}}
|
|
|
|
<li data-uid="{{.Id}}">
|
|
|
|
<a>
|
|
|
|
<i class="fa fa-check"></i>
|
|
|
|
<img src="{{.AvatarLink}}?s=28" alt="user-avatar" title="username">
|
|
|
|
{{.Name}}
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
{{end}}
|
2014-06-25 06:22:08 +02:00
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2014-06-25 07:08:28 +02:00
|
|
|
<input type="hidden" value="{{.SignedUserId}}" name="userId" id="repo-owner-id"/>
|
2014-06-25 06:22:08 +02:00
|
|
|
|
|
|
|
<!--<div class="col-md-8">
|
2014-03-07 23:08:21 +01:00
|
|
|
<p class="form-control-static">{{.SignedUserName}}</p>
|
|
|
|
<input type="hidden" value="{{.SignedUserId}}" name="userId"/>
|
2014-06-25 06:22:08 +02:00
|
|
|
</div>-->
|
2014-03-02 17:22:20 +01:00
|
|
|
</div>
|
2014-03-07 22:05:18 +01:00
|
|
|
|
2014-03-09 03:25:38 +01:00
|
|
|
<div class="form-group {{if .Err_RepoName}}has-error has-feedback{{end}}">
|
2014-03-02 17:22:20 +01:00
|
|
|
<label class="col-md-2 control-label">Repository<strong class="text-danger">*</strong></label>
|
|
|
|
<div class="col-md-8">
|
2014-03-09 03:25:38 +01:00
|
|
|
<input name="repo" type="text" class="form-control" placeholder="Type your repository name" value="{{.repo}}" required="required">
|
2014-03-02 17:22:20 +01:00
|
|
|
<span class="help-block">Great repository names are short and memorable. </span>
|
|
|
|
</div>
|
|
|
|
</div>
|
2014-03-07 22:05:18 +01:00
|
|
|
|
|
|
|
<div class="form-group">
|
2014-04-12 03:47:39 +02:00
|
|
|
<label class="col-md-2 control-label">Visibility</label>
|
2014-03-07 22:05:18 +01:00
|
|
|
<div class="col-md-8">
|
2014-04-12 03:47:39 +02:00
|
|
|
<div class="checkbox">
|
|
|
|
<label>
|
|
|
|
<input type="checkbox" name="private" {{if .private}}checked{{end}}>
|
|
|
|
<strong>This repository is private</strong>
|
|
|
|
</label>
|
|
|
|
</div>
|
2014-03-07 22:05:18 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2014-03-09 03:25:38 +01:00
|
|
|
<div class="form-group {{if .Err_Description}}has-error has-feedback{{end}}">
|
2014-03-02 17:22:20 +01:00
|
|
|
<label class="col-md-2 control-label">Description</label>
|
|
|
|
<div class="col-md-8">
|
2014-03-09 03:25:38 +01:00
|
|
|
<textarea name="desc" class="form-control" placeholder="Type your repository description">{{.desc}}</textarea>
|
2014-03-02 17:22:20 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
2014-03-07 22:05:18 +01:00
|
|
|
|
2014-03-02 17:22:20 +01:00
|
|
|
<div class="form-group">
|
|
|
|
<label class="col-md-2 control-label">Language</label>
|
|
|
|
<div class="col-md-8">
|
|
|
|
<select class="form-control" name="language">
|
|
|
|
<option value="">Select a language</option>
|
2014-03-11 06:32:36 +01:00
|
|
|
{{range .LanguageIgns}}<option value="{{.}}">{{.}}</option>{{end}}
|
2014-03-02 17:22:20 +01:00
|
|
|
</select>
|
2014-04-15 21:34:26 +02:00
|
|
|
<br>
|
|
|
|
<div>Need more .gitignore? Go <a href="http://www.gitignore.io/">gitignore.io</a>.</div>
|
2014-03-02 17:22:20 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
2014-03-07 22:05:18 +01:00
|
|
|
|
2014-03-11 05:49:09 +01:00
|
|
|
<div class="form-group">
|
|
|
|
<label class="col-md-2 control-label">License</label>
|
|
|
|
<div class="col-md-8">
|
|
|
|
<select class="form-control" name="license">
|
|
|
|
<option value="">Select a license</option>
|
2014-03-11 06:32:36 +01:00
|
|
|
{{range .Licenses}}<option value="{{.}}">{{.}}</option>{{end}}
|
2014-03-11 05:49:09 +01:00
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2014-03-02 17:22:20 +01:00
|
|
|
<div class="form-group">
|
|
|
|
<div class="col-md-8 col-md-offset-2">
|
|
|
|
<div class="checkbox">
|
|
|
|
<label>
|
2014-03-16 07:28:24 +01:00
|
|
|
<input type="checkbox" name="initReadme" {{if .initReadme}}checked{{end}}>
|
2014-03-02 17:22:20 +01:00
|
|
|
<strong>Initialize this repository with a README</strong>
|
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2014-03-07 22:05:18 +01:00
|
|
|
|
2014-03-02 17:22:20 +01:00
|
|
|
<div class="form-group">
|
|
|
|
<div class="col-md-offset-2 col-md-8">
|
|
|
|
<button type="submit" class="btn btn-lg btn-primary">Create repository</button>
|
|
|
|
<a href="/" class="text-danger">Cancel</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</form>
|
2014-02-20 03:45:43 +01:00
|
|
|
</div>
|
|
|
|
{{template "base/footer" .}}
|