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: eccf3ddbfa57629b0d5c55c871d02d799ce8ba80 (plain)
1
2
3
4
5
6
7
8
9
10
11
.ui-box
  %h5.title= title
  %ul.well-list
    - issues.each do |issue|
      %li
        = link_to [@project, issue] do
          %span.badge{class: issue.closed? ? 'badge-important' : 'badge-info'} ##{issue.id}
        = link_to_gfm truncate(issue.title, length: 60), [@project, issue]
        - if issue.assignee
          .pull-right
            = image_tag gravatar_icon(issue.assignee.email, 16), class: "avatar s16"