gitlab-org--gitlab-foss/app/views/dashboard/issues.html.haml

30 lines
702 B
Plaintext
Raw Normal View History

%h3.page_title
2012-01-27 22:51:02 +00:00
Issues
%small (assigned to you)
2013-01-30 14:40:43 +00:00
%small.pull-right #{@issues.total_count} issues
2012-01-27 22:51:02 +00:00
2012-11-21 05:24:05 +00:00
%hr
.row
.span3
= render 'filter', entity: 'issue'
.span9
- if @issues.any?
- @issues.group_by(&:project).each do |group|
%div.ui-box
- project = group[0]
2013-01-04 22:35:38 +00:00
%h5.title
= link_to_project project
 
%i.icon-angle-right
 
= link_to 'issues', project_issues_path(project)
2013-04-06 12:10:24 +00:00
%ul.well-list.issues-list
2012-11-21 05:24:05 +00:00
- group[1].each do |issue|
2013-02-25 20:56:10 +00:00
= render issue
2012-11-21 05:24:05 +00:00
%hr
= paginate @issues, theme: "gitlab"
- else
%p.nothing_here_message Nothing to show here