debian-mirror-gitlab/app/views/projects/notes/_notes_with_form.html.haml

22 lines
968 B
Text
Raw Normal View History

2015-04-26 12:48:37 +05:30
%ul#notes-list.notes.main-notes-list.timeline
2014-09-02 18:07:02 +05:30
= render "projects/notes/notes"
2016-06-02 11:05:42 +05:30
%ul.notes.notes-form.timeline
%li.timeline-entry
- if can? current_user, :create_note, @project
.timeline-icon.hidden-xs.hidden-sm
%a.author_link{ href: user_path(current_user) }
= image_tag avatar_icon(current_user), alt: current_user.to_reference, class: 'avatar s40'
.timeline-content.timeline-content-form
= render "projects/notes/form", view: diff_view
- else
.disabled-comment.text-center
.disabled-comment-text.inline
Please
= link_to "register",new_user_session_path
or
= link_to "login",new_user_session_path
to post a comment
2014-09-02 18:07:02 +05:30
:javascript
2015-12-23 02:04:40 +05:30
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}")