summaryrefslogtreecommitdiff
path: root/app/views/projects/issues/_issue.html.haml
blob: 5c9839cb33054784207aa50050a003cd4242a3db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
%li{ id: dom_id(issue), class: issue_css_classes(issue), url: issue_path(issue), data: { labels: issue.label_ids, id: issue.id } }
  .issue-box
    - if @bulk_edit
      .issue-check
        = check_box_tag dom_id(issue, "selected"), nil, false, 'data-id' => issue.id, class: "selected_issue"
    .issue-info-container
      .issue-title.title
        %span.issue-title-text
          = confidential_icon(issue)
          = link_to issue.title, issue_path(issue)
        %ul.controls
          - if issue.closed?
            %li
              CLOSED

          - if issue.assignee
            %li
              = link_to_member(@project, issue.assignee, name: false, title: "Assigned to :name")

          - upvotes, downvotes = issue.upvotes, issue.downvotes
          - if upvotes > 0
            %li
              = icon('thumbs-up')
              = upvotes

          - if downvotes > 0
            %li
              = icon('thumbs-down')
              = downvotes

          - note_count = issue.notes.user.count
          %li
            = link_to issue_path(issue, anchor: 'notes'), class: ('no-comments' if note_count.zero?) do
              = icon('comments')
              = note_count

      .issue-info
        #{issuable_reference(issue)} ·
        opened #{time_ago_with_tooltip(issue.created_at, placement: 'bottom')}
        by #{link_to_member(@project, issue.author, avatar: false)}
        - if issue.milestone
           
          = link_to namespace_project_issues_path(issue.project.namespace, issue.project, milestone_title: issue.milestone.title) do
            = icon('clock-o')
            = issue.milestone.title
        - if issue.due_date
          %span{ class: "#{'cred' if issue.overdue?}" }
             
            = icon('calendar')
            = issue.due_date.to_s(:medium)
        - if issue.labels.any?
           
          - issue.labels.each do |label|
            = link_to_label(label, subject: issue.project, css_class: 'label-link')
        - if issue.tasks?
           
          %span.task-status
            = issue.task_status

        .pull-right.issue-updated-at
          %span updated #{time_ago_with_tooltip(issue.updated_at, placement: 'bottom', html_class: 'issue_update_ago')}