diff options
author | 无闻 <u@gogs.io> | 2015-03-19 17:03:03 -0400 |
---|---|---|
committer | 无闻 <u@gogs.io> | 2015-03-19 17:03:03 -0400 |
commit | e312634286e68d8fac4d20adb729661f8a444b2a (patch) | |
tree | 1c885def01ff73104086d57dfb31085c1a1a4729 /templates | |
parent | 7fe68d3db70edfb960ecdbaca688ba2c95219b5c (diff) | |
parent | 96a71aaed8b01e505fffbd740ffb492ce89cead1 (diff) | |
download | gitea-e312634286e68d8fac4d20adb729661f8a444b2a.tar.gz gitea-e312634286e68d8fac4d20adb729661f8a444b2a.zip |
Merge pull request #1091 from sapk/fix-ng-issue-pages
Apply ng to issue dashboard
Diffstat (limited to 'templates')
-rw-r--r-- | templates/user/issues.tmpl | 95 |
1 files changed, 43 insertions, 52 deletions
diff --git a/templates/user/issues.tmpl b/templates/user/issues.tmpl index bb81d4fae8..aec09f7010 100644 --- a/templates/user/issues.tmpl +++ b/templates/user/issues.tmpl @@ -1,53 +1,44 @@ -{{template "base/head" .}} -{{template "base/navbar" .}} -<div id="body-nav"> - <div class="container"> - <ul class="nav nav-pills pull-right"> - <li><a href="{{AppSubUrl}}/">News Feed</a></li> - <li class="active"><a href="{{AppSubUrl}}/issues">Issues</a></li> - <!-- <li><a href="{{AppSubUrl}}/pulls">Pull Requests</a></li> - <li><a href="{{AppSubUrl}}/stars">Stars</a></li> --> - </ul> - <h3>Your Issues</h3> - </div> +{{template "ng/base/head" .}} +{{template "ng/base/header" .}} +{{template "user/dashboard/nav" .}} +<div id="dashboard-wrapper"> + <div id="dashboard" class="container" data-page="user"> + {{if .HasInfo}}<div class="alert alert-info">{{.InfoMsg}}</div>{{end}} + <div id="issue"> + <div class="left grid-1-5 filter-list"> + <ul class="list-unstyled menu menu-vertical"> + <li><a href="{{AppSubUrl}}/issues?state={{.State}}&repoid={{.RepoId}}" class="radius{{if eq .ViewType "all"}} active{{end}}" >In your repositories <strong class="pull-right">{{.IssueStats.AllCount}}</strong></a></li> + <li><a href="{{AppSubUrl}}/issues?type=assigned&repoid={{.RepoId}}&state={{.State}}" class="radius{{if eq .ViewType "assigned"}} active{{end}}">Assigned to you <strong class="pull-right">{{.IssueStats.AssignCount}}</strong></a></li> + <li><a href="{{AppSubUrl}}/issues?type=created_by&repoid={{.RepoId}}&state={{.State}}" class="radius{{if eq .ViewType "created_by"}} active{{end}}">Created by you <strong class="pull-right">{{.IssueStats.CreateCount}}</strong></a></li> + <li><hr/></li> + {{range .Repos}} + <li><a href="{{AppSubUrl}}/issues?type={{$.ViewType}}{{if eq $.RepoId .Id}}{{else}}&repoid={{.Id}}{{end}}&state={{$.State}}" class="radius{{if eq $.RepoId .Id}} active{{end}}">{{$.SignedUser.Name}}/{{.Name}} <strong class="pull-right">{{if $.IsShowClosed}}{{.NumClosedIssues}}{{else}}{{.NumOpenIssues}}{{end}}</strong></a></li> + {{end}} + </ul> + </div> + <div class="right grid-3-4"> + <div class="filter-option"> + <div class="btn-group"> + <a class="btn btn-white btn-small issue-open{{if not .IsShowClosed}} active{{end}}" href="{{AppSubUrl}}/issues?type={{.ViewType}}&repoid={{.RepoId}}">Open</a> + <a class="btn btn-white btn-small issue-close{{if .IsShowClosed}} active{{end}}" href="{{AppSubUrl}}/issues?type={{.ViewType}}&repoid={{.RepoId}}&state=closed">Closed</a> + </div> + </div> + <div class="issues list-group"> + {{range .Issues}}{{if .}} + <div class="list-group-item issue-item" id="issue-{{.Id}}" onclick="window.location.href='{{AppSubUrl}}/{{.Repo.Owner.Name}}/{{.Repo.Name}}/issues/{{.Index}}'"> + <span class="number pull-right">#{{.Index}}</span> + <h5 class="title"><a href="{{AppSubUrl}}/{{.Repo.Owner.Name}}/{{.Repo.Name}}/issues/{{.Index}}">{{.Name}}</a></h5> + <p class="info"> + <span class="author"><img class="avatar" src="{{.Poster.AvatarLink}}" alt="" width="20"/> + <a href="{{AppSubUrl}}/{{.Poster.Name}}">{{.Poster.Name}}</a></span> + <span class="time">{{TimeSince .Created $.Lang}}</span> + <span class="comment"><i class="fa fa-comments"></i> {{.NumComments}}</span> + </p> + </div> + {{end}}{{end}} + </div> + </div> + </div> + </div> </div> - -<div id="body" class="container" data-page="user"> - {{if .HasInfo}}<div class="alert alert-info">{{.InfoMsg}}</div>{{end}} - <div id="issue"> - <div class="col-md-3 filter-list"> - <ul class="list-unstyled"> - <li><a href="{{AppSubUrl}}/issues?state={{.State}}&repoid={{.RepoId}}"{{if eq .ViewType "all"}} class="active"{{end}}>In your repositories <strong class="pull-right">{{.IssueStats.AllCount}}</strong></a></li> - <li><a href="{{AppSubUrl}}/issues?type=assigned&repoid={{.RepoId}}&state={{.State}}"{{if eq .ViewType "assigned"}} class="active"{{end}}>Assigned to you <strong class="pull-right">{{.IssueStats.AssignCount}}</strong></a></li> - <li><a href="{{AppSubUrl}}/issues?type=created_by&repoid={{.RepoId}}&state={{.State}}"{{if eq .ViewType "created_by"}} class="active"{{end}}>Created by you <strong class="pull-right">{{.IssueStats.CreateCount}}</strong></a></li> - <li><hr/></li> - {{range .Repos}} - <li><a href="{{AppSubUrl}}/issues?type={{$.ViewType}}{{if eq $.RepoId .Id}}{{else}}&repoid={{.Id}}{{end}}&state={{$.State}}" class="sm{{if eq $.RepoId .Id}} active{{end}}">{{$.SignedUser.Name}}/{{.Name}} <strong class="pull-right">{{if $.IsShowClosed}}{{.NumClosedIssues}}{{else}}{{.NumOpenIssues}}{{end}}</strong></a></li> - {{end}} - </ul> - </div> - <div class="col-md-9"> - <div class="filter-option"> - <div class="btn-group"> - <a class="btn btn-default issue-open{{if not .IsShowClosed}} active{{end}}" href="{{AppSubUrl}}/issues?type={{.ViewType}}&repoid={{.RepoId}}">Open</a> - <a class="btn btn-default issue-close{{if .IsShowClosed}} active{{end}}" href="{{AppSubUrl}}/issues?type={{.ViewType}}&repoid={{.RepoId}}&state=closed">Closed</a> - </div> - </div> - <div class="issues list-group"> - {{range .Issues}}{{if .}} - <div class="list-group-item issue-item" id="issue-{{.Id}}"> - <span class="number pull-right">#{{.Index}}</span> - <h5 class="title"><a href="{{AppSubUrl}}/{{.Repo.Owner.Name}}/{{.Repo.Name}}/issues/{{.Index}}">{{.Name}}</a></h5> - <p class="info"> - <span class="author"><img class="avatar" src="{{.Poster.AvatarLink}}" alt="" width="20"/> - <a href="{{AppSubUrl}}/{{.Poster.Name}}">{{.Poster.Name}}</a></span> - <span class="time">{{TimeSince .Created $.Lang}}</span> - <span class="comment"><i class="fa fa-comments"></i> {{.NumComments}}</span> - </p> - </div> - {{end}}{{end}} - </div> - </div> - </div> -</div> -{{template "base/footer" .}}
\ No newline at end of file +{{template "ng/base/footer" .}} |