_notes_with_form.html.haml 1.04 KB
Newer Older
1
%ul#notes-list.notes.main-notes-list.timeline
2
  = render "projects/notes/notes"
Phil Hughes's avatar
Phil Hughes committed
3
%ul.notes.notes-form.timeline
4
  %li.timeline-entry
5 6
    .flash-container.timeline-content

Phil Hughes's avatar
Phil Hughes committed
7 8
    - if can? current_user, :create_note, @project
      .timeline-icon.hidden-xs.hidden-sm
9 10
        %a.author_link{ href: user_path(current_user) }
          = image_tag avatar_icon(current_user), alt: current_user.to_reference, class: 'avatar s40'
Phil Hughes's avatar
Phil Hughes committed
11
      .timeline-content.timeline-content-form
Phil Hughes's avatar
Phil Hughes committed
12
        = render "projects/notes/form", view: diff_view
Phil Hughes's avatar
Phil Hughes committed
13 14 15 16
    - else
      .disabled-comment.text-center
        .disabled-comment-text.inline
          Please
17
          = link_to "register", new_session_path(:user, redirect_to_referer: 'yes')
Phil Hughes's avatar
Phil Hughes committed
18
          or
19
          = link_to "login", new_session_path(:user, redirect_to_referer: 'yes')
Phil Hughes's avatar
Phil Hughes committed
20
          to post a comment
21

gitlabhq's avatar
gitlabhq committed
22
:javascript
23
  var notes = new Notes("#{namespace_project_notes_path(namespace_id: @project.namespace, target_id: @noteable.id, target_type: @noteable.class.name.underscore)}", #{@notes.map(&:id).to_json}, #{Time.now.to_i}, "#{diff_view}")