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

_issues.html.haml « milestones « projects « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 83eb327975b406a7d32d55993c82048ec47f5339 (plain)
1
2
3
4
5
6
7
8
9
10
11
.panel.panel-default
  .panel-heading= title
  %ul.well-list
    - issues.each do |issue|
      %li
        = link_to [@project, issue] do
          %span.label{class: issue.closed? ? 'label-danger' : 'label-info'} ##{issue.iid}
        = link_to_gfm truncate(issue.title, length: 40), [@project, issue]
        - if issue.assignee
          .pull-right
            = image_tag avatar_icon(issue.assignee.email, 16), class: "avatar s16"