29 lines
1.6 KiB
Text
29 lines
1.6 KiB
Text
-# @project is present when viewing Project's milestone
|
|
- project = @project || issuable.project
|
|
- assignee = issuable.assignee
|
|
- issuable_type = issuable.class.table_name
|
|
- base_url_args = [project.namespace.becomes(Namespace), project, issuable_type]
|
|
- can_update = can?(current_user, :"update_#{issuable.to_ability_name}", issuable)
|
|
|
|
%li{ id: dom_id(issuable, 'sortable'), class: "issuable-row #{'is-disabled' unless can_update}", 'data-iid' => issuable.iid, 'data-id' => issuable.id, 'data-url' => polymorphic_path(issuable) }
|
|
%span
|
|
- if show_project_name
|
|
%strong #{project.name} ·
|
|
- elsif show_full_project_name
|
|
%strong #{project.name_with_namespace} ·
|
|
- if issuable.is_a?(Issue)
|
|
= confidential_icon(issuable)
|
|
= link_to_gfm issuable.title, [project.namespace.becomes(Namespace), project, issuable], title: issuable.title
|
|
.issuable-detail
|
|
= link_to [project.namespace.becomes(Namespace), project, issuable] do
|
|
%span.issuable-number= issuable.to_reference
|
|
|
|
- issuable.labels.each do |label|
|
|
= link_to polymorphic_path(base_url_args, { milestone_title: @milestone.title, label_name: label.title, state: 'all' }) do
|
|
- render_colored_label(label)
|
|
|
|
%span.assignee-icon
|
|
- if assignee
|
|
= link_to polymorphic_path(base_url_args, { milestone_title: @milestone.title, assignee_id: issuable.assignee_id, state: 'all' }),
|
|
class: 'has-tooltip', title: "Assigned to #{assignee.name}", data: { container: 'body' } do
|
|
- image_tag(avatar_icon(issuable.assignee, 16), class: "avatar s16", alt: '')
|