47 lines
1.9 KiB
Plaintext
47 lines
1.9 KiB
Plaintext
|
- note = discussion_notes.first
|
||
|
.discussion.js-details-container.js-toggler-container.open{ class: note.discussion_id }
|
||
|
.discussion-header
|
||
|
.discussion-actions
|
||
|
= link_to "javascript:;", class: "js-details-target turn-on js-toggler-target" do
|
||
|
%i.icon-eye-close
|
||
|
Hide discussion
|
||
|
= link_to "javascript:;", class: "js-details-target turn-off js-toggler-target" do
|
||
|
%i.icon-eye-open
|
||
|
Show discussion
|
||
|
= image_tag gravatar_icon(note.author.email), class: "avatar s32"
|
||
|
%div
|
||
|
= link_to note.author_name, project_team_member_path(@project, @project.team_member_by_id(note.author)), class: "note-author"
|
||
|
- if note.for_merge_request?
|
||
|
started a discussion on this merge request diff
|
||
|
= link_to_merge_request_diff_line_note(note)
|
||
|
- elsif note.for_commit?
|
||
|
started a discussion on commit
|
||
|
#{link_to note.noteable.short_id, project_commit_path(@project, note.noteable)}
|
||
|
= link_to_commit_diff_line_note(note) if note.for_diff_line?
|
||
|
- else
|
||
|
%cite.cgray started a discussion
|
||
|
%div
|
||
|
- if discussion_notes.size > 1
|
||
|
- last_note = discussion_notes.last
|
||
|
last updated by
|
||
|
= link_to last_note.author_name, project_team_member_path(@project, @project.team_member_by_id(last_note.author)), class: "note-author"
|
||
|
%span.discussion-last-update
|
||
|
= time_ago_in_words(last_note.updated_at)
|
||
|
ago
|
||
|
.discussion-body
|
||
|
- if note.for_diff_line?
|
||
|
.diff_file.content
|
||
|
= render "notes/discussion_diff", discussion_notes: discussion_notes, note: note
|
||
|
- else
|
||
|
.notes.content
|
||
|
= render discussion_notes
|
||
|
|
||
|
-# will be shown when the other one is hidden
|
||
|
.discussion-hidden.content.hide
|
||
|
.note
|
||
|
%em Hidden discussion.
|
||
|
= link_to "javascript:;", class: "js-details-target js-toggler-target" do
|
||
|
%i.icon-eye-open
|
||
|
Show
|
||
|
|