Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_issues.html.haml « issues « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 42e8371a0ba5621cd292d12abf255572b80b9814 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
%table.round-borders#issues-table
  %tr
    - if can?(current_user, :admin_issue, @project) && !params[:f] || params[:f] == "0"
      %th 
    %th Assignee
    %th ID
    %th Title
    %th Closed?
    %th

  - @issues.critical.each do |issue|
    = render(:partial => 'show', :locals => {:issue => issue})

  - @issues.non_critical.each do |issue|
    = render(:partial => 'show', :locals => {:issue => issue})