6286b28bbc
Given an activity feed entry like: > Douwe Maan commented on [issue #123] at [gitlab-org/gitlab-ce] ...the `issue #123` link will now have a `title` attribute.
19 lines
527 B
Text
19 lines
527 B
Text
.event-title
|
|
%span.author_name= link_to_author event
|
|
%span.event_label{class: event.action_name}
|
|
= event_action_name(event)
|
|
|
|
- if event.target
|
|
%strong= link_to event.target.reference_link_text, [event.project.namespace.becomes(Namespace), event.project, event.target], title: event.target_title
|
|
|
|
= event_preposition(event)
|
|
|
|
- if event.project
|
|
= link_to_project event.project
|
|
- else
|
|
= event.project_name
|
|
|
|
- if event.target.respond_to?(:title)
|
|
.event-body
|
|
.event-note
|
|
= event.target.title
|