diff options
author | Unknwon <u@gogs.io> | 2015-08-10 14:42:50 +0800 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2015-08-10 14:42:50 +0800 |
commit | 17de3ab0a313819bdeb73f3985b61a791ae84696 (patch) | |
tree | 55b8faa356fe7c79e6910d0b7cfe1fae606bb503 /templates | |
parent | 48f12d4eaddf08282086199d94a306b47483521f (diff) | |
download | gitea-17de3ab0a313819bdeb73f3985b61a791ae84696.tar.gz gitea-17de3ab0a313819bdeb73f3985b61a791ae84696.zip |
add migrate from issue.label_ids to issue_label
Diffstat (limited to 'templates')
-rw-r--r-- | templates/.VERSION | 2 | ||||
-rw-r--r-- | templates/base/head_old.tmpl | 2 | ||||
-rw-r--r-- | templates/repo/header.tmpl | 2 | ||||
-rw-r--r-- | templates/repo/home.tmpl | 4 | ||||
-rw-r--r-- | templates/repo/issue/new_form.tmpl | 26 |
5 files changed, 18 insertions, 18 deletions
diff --git a/templates/.VERSION b/templates/.VERSION index b039250bc5..50ad739b63 100644 --- a/templates/.VERSION +++ b/templates/.VERSION @@ -1 +1 @@ -0.6.4.0809 Beta
\ No newline at end of file +0.6.4.0810 Beta
\ No newline at end of file diff --git a/templates/base/head_old.tmpl b/templates/base/head_old.tmpl index fc2a86788d..9a4665de05 100644 --- a/templates/base/head_old.tmpl +++ b/templates/base/head_old.tmpl @@ -28,8 +28,6 @@ {{end}} <link href="{{AppSubUrl}}/css/todc-bootstrap.min.css" rel="stylesheet" /> - <link href="{{AppSubUrl}}/css/datepicker3.css" rel="stylesheet" /> - <link href="{{AppSubUrl}}/css/bootstrap-colorpicker.min.css" rel="stylesheet" /> <link href="{{AppSubUrl}}/css/markdown.css" rel="stylesheet" /> <link href="{{AppSubUrl}}/css/gogs.css" rel="stylesheet" /> diff --git a/templates/repo/header.tmpl b/templates/repo/header.tmpl index e0e2396e43..66e88a0530 100644 --- a/templates/repo/header.tmpl +++ b/templates/repo/header.tmpl @@ -17,7 +17,7 @@ <i class="fa fa-star{{if not $.IsStaringRepo}}-o{{end}}"></i> {{if $.IsStaringRepo}}{{$.i18n.Tr "repo.unstar"}}{{else}}{{$.i18n.Tr "repo.star"}}{{end}} <span class="num">{{.NumStars}}</span> </a> - <a class="ui black basic button {{if $.IsRepositoryOwner}}poping up{{end}}" {{if not $.IsRepositoryOwner}}href="{{AppSubUrl}}/repo/fork/{{.Id}}"{{end}} {{if $.IsRepositoryOwner}}data-content="{{$.i18n.Tr "repo.fork_from_self"}}" data-position="top right"{{end}}> + <a class="ui black basic button {{if $.IsRepositoryOwner}}poping up{{end}}" {{if not $.IsRepositoryOwner}}href="{{AppSubUrl}}/repo/fork/{{.ID}}"{{end}} {{if $.IsRepositoryOwner}}data-content="{{$.i18n.Tr "repo.fork_from_self"}}" data-position="top right"{{end}}> <i class="octicon octicon-repo-forked"></i> {{$.i18n.Tr "repo.fork"}} <span class="num">{{.NumForks}}</span> </a> diff --git a/templates/repo/home.tmpl b/templates/repo/home.tmpl index 0be1b84de7..72d30fd72e 100644 --- a/templates/repo/home.tmpl +++ b/templates/repo/home.tmpl @@ -11,11 +11,11 @@ <ul id="repo-file-nav" class="clear menu menu-line"> {{if and .IsRepositoryAdmin .Repository.BaseRepo}} {{ $baseRepo := .Repository.BaseRepo}} - <li> + <!-- <li> <a href="{{AppSubUrl}}/{{$baseRepo.Owner.Name}}/{{$baseRepo.Name}}/compare/{{$.BaseDefaultBranch}}...{{$.Owner.Name}}:{{$.BranchName}}"> <button class="btn btn-green btn-small btn-radius" id="repo-compare-btn"><i class="octicon octicon-git-compare"></i></button> </a> - </li> + </li> --> {{end}} <li id="repo-branch-switch" class="down drop"> <a> diff --git a/templates/repo/issue/new_form.tmpl b/templates/repo/issue/new_form.tmpl index 53e6ca5e5d..ab3cb6cfda 100644 --- a/templates/repo/issue/new_form.tmpl +++ b/templates/repo/issue/new_form.tmpl @@ -8,7 +8,7 @@ <div class="twelve wide column"> <div class="ui comments"> <div class="comment"> - <a class="avatar"> + <a class="avatar" href="{{.SignedUser.HomeLink}}"> <img src="{{.SignedUser.AvatarLink}}"> </a> <div class="ui segment content"> @@ -37,33 +37,34 @@ </div> </div> + {{if .IsRepositoryAdmin}} <div class="four wide column"> <div class="ui segment metas"> - <div class="ui {{if .Labels}}disabled{{end}} dropdown jump item"> + <div class="ui {{if not .Labels}}disabled{{end}} dropdown jump item"> <span class="text"> <strong>{{.i18n.Tr "repo.issues.new.labels"}}</strong> <span class="octicon octicon-gear"></span> </span> - <div class="menu"> - <a class="item" href="{{$.RepoLink}}/issues?type={{$.ViewType}}&state={{$.State}}&milestone={{$.MilestoneID}}">{{.i18n.Tr "repo.issues.filter_label_no_select"}}</a> + <div class="filter menu"> + <a class="item" href="#">{{.i18n.Tr "repo.issues.new.clear_labels"}}</a> {{range .Labels}} - <a class="item" href="{{$.RepoLink}}/issues?type={{$.ViewType}}&state={{$.State}}&labels={{.ID}}&milestone={{$.MilestoneID}}"><span class="octicon {{if eq $.SelectLabels .ID}}octicon-check{{end}}"></span><span class="label color" style="background-color: {{.Color}}"></span> {{.Name}}</a> + <a class="item" href="#"><span class="octicon {{if .IsChecked}}octicon-check{{end}}"></span><span class="label color" style="background-color: {{.Color}}"></span> {{.Name}}</a> {{end}} </div> </div> <div class="ui list"> - <span class="item">filter_label_no_select</span> + <span class="item {{if .SelectedLabels}}hide{{end}}">{{.i18n.Tr "repo.issues.new.no_label"}}</span> </div> - <div class="ui divider"></div> + <!-- <div class="ui divider"></div> <div class="ui {{if .Labels}}disabled{{end}} dropdown jump item"> <span class="text"> - <strong>{{.i18n.Tr "repo.issues.new.labels"}}</strong> + <strong>{{.i18n.Tr "repo.issues.new.milestone"}}</strong> <span class="octicon octicon-gear"></span> </span> <div class="menu"> <a class="item" href="{{$.RepoLink}}/issues?type={{$.ViewType}}&state={{$.State}}&milestone={{$.MilestoneID}}">{{.i18n.Tr "repo.issues.filter_label_no_select"}}</a> {{range .Labels}} - <a class="item" href="{{$.RepoLink}}/issues?type={{$.ViewType}}&state={{$.State}}&labels={{.ID}}&milestone={{$.MilestoneID}}"><span class="octicon {{if eq $.SelectLabels .ID}}octicon-check{{end}}"></span><span class="label color" style="background-color: {{.Color}}"></span> {{.Name}}</a> + <a class="item" href="{{$.RepoLink}}/issues?type={{$.ViewType}}&state={{$.State}}&labels={{.ID}}&milestone={{$.MilestoneID}}"><span class="octicon {{if .IsChecked}}octicon-check{{end}}"></span><span class="label color" style="background-color: {{.Color}}"></span> {{.Name}}</a> {{end}} </div> </div> @@ -73,19 +74,20 @@ <div class="ui divider"></div> <div class="ui {{if .Labels}}disabled{{end}} dropdown jump item"> <span class="text"> - <strong>{{.i18n.Tr "repo.issues.new.labels"}}</strong> + <strong>{{.i18n.Tr "repo.issues.new.assignee"}}</strong> <span class="octicon octicon-gear"></span> </span> <div class="menu"> <a class="item" href="{{$.RepoLink}}/issues?type={{$.ViewType}}&state={{$.State}}&milestone={{$.MilestoneID}}">{{.i18n.Tr "repo.issues.filter_label_no_select"}}</a> {{range .Labels}} - <a class="item" href="{{$.RepoLink}}/issues?type={{$.ViewType}}&state={{$.State}}&labels={{.ID}}&milestone={{$.MilestoneID}}"><span class="octicon {{if eq $.SelectLabels .ID}}octicon-check{{end}}"></span><span class="label color" style="background-color: {{.Color}}"></span> {{.Name}}</a> + <a class="item" href="{{$.RepoLink}}/issues?type={{$.ViewType}}&state={{$.State}}&labels={{.ID}}&milestone={{$.MilestoneID}}"><span class="octicon {{if .IsChecked}}octicon-check{{end}}"></span><span class="label color" style="background-color: {{.Color}}"></span> {{.Name}}</a> {{end}} </div> </div> <div class="ui list"> <span class="item">filter_label_no_select</span> - </div> + </div> --> </div> </div> + {{end}} </form>
\ No newline at end of file |