_active.html.haml 903 Bytes
Newer Older
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
1 2 3 4 5
- note = discussion_notes.first
.discussion.js-toggle-container{ class: note.discussion_id }
  .discussion-header
    .discussion-actions
      = link_to "#", class: "js-toggle-button" do
6
        %i.fa.fa-chevron-up
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
7 8 9 10 11 12 13 14 15 16 17 18 19
        Show/hide discussion
    %div
      = link_to_member(@project, note.author, avatar: false)
      started a discussion
      = link_to diffs_project_merge_request_path(note.project, note.noteable, anchor: note.line_code) do
        %strong on the diff
    .last-update.hide.js-toggle-content
      - last_note = discussion_notes.last
      last updated by
      = link_to_member(@project, last_note.author, avatar: false)
      %span.discussion-last-update
        #{time_ago_with_tooltip(last_note.updated_at, 'bottom', 'discussion_updated_ago')}
  .discussion-body.js-toggle-content
20
    = render "projects/notes/discussions/diff", discussion_notes: discussion_notes, note: note