49 lines
1.7 KiB
Text
49 lines
1.7 KiB
Text
%li{ id: dom_id(issue), class: issue_css_classes(issue), url: issue_path(issue) }
|
|
- if controller.controller_name == 'issues' && can?(current_user, :admin_issue, @project)
|
|
.issue-check
|
|
= check_box_tag dom_id(issue,"selected"), nil, false, 'data-id' => issue.id, class: "selected_issue"
|
|
|
|
.issue-title
|
|
%span.issue-title-text
|
|
= link_to_gfm issue.title, issue_path(issue), class: "row_title"
|
|
%ul.controls.light
|
|
- if issue.closed?
|
|
%li
|
|
CLOSED
|
|
|
|
- if issue.assignee
|
|
%li
|
|
= link_to_member(@project, issue.assignee, name: false, title: "Assigned to :name")
|
|
|
|
- note_count = issue.notes.user.count
|
|
- if note_count > 0
|
|
%li
|
|
= link_to issue_path(issue) + "#notes" do
|
|
= icon('comments')
|
|
= note_count
|
|
- else
|
|
%li
|
|
= link_to issue_path(issue) + "#notes", class: "issue-no-comments" do
|
|
= icon('comments')
|
|
= note_count
|
|
|
|
.issue-info
|
|
#{issue.to_reference} ·
|
|
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.labels.any?
|
|
|
|
- issue.labels.each do |label|
|
|
= link_to_label(label, project: issue.project)
|
|
- 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')}
|