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: d3e219403463572f0c77df9df73d87a9cfe2ca66 (plain)
1
2
3
4
5
6
7
8
9
10
%table.round-borders#issues-table
  %tr
    %th Assignee
    %th ID
    %th Title
    %th Closed?
    %th

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