issues.html.haml 495 字节
Newer Older
R
randx 已提交
1 2 3 4 5 6 7 8 9 10 11
%h3.page_title
  Issues
  %small (assigned to you)
  %small.right #{@issues.total_count} issues

%br
.clearfix
- if @issues.any?
  - @issues.group_by(&:project).each do |group|
    %div.ui-box
      - @project = group[0]
12 13
      %h5.title
        = @project.name
14
      %ul.well-list.issues_table
R
randx 已提交
15 16 17 18 19 20
        - group[1].each do |issue|
          = render(partial: 'issues/show', locals: {issue: issue})
  %hr
  = paginate @issues, theme: "gitlab"
- else
  %h3.nothing_here_message Nothing to show here