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

38 lines
1.4 KiB
Text
Raw Normal View History

2018-03-17 18:26:18 +05:30
- issuable = @issue || @merge_request
- discussion_locked = issuable&.discussion_locked?
2015-04-26 12:48:37 +05:30
%ul#notes-list.notes.main-notes-list.timeline
2017-08-17 22:00:37 +05:30
= render "shared/notes/notes"
= render 'shared/notes/edit_form', project: @project
2017-09-10 17:25:29 +05:30
- if can_create_note?
%ul.notes.notes-form.timeline
%li.timeline-entry
.timeline-entry-inner
.flash-container.timeline-content
2016-08-24 12:49:21 +05:30
2017-09-10 17:25:29 +05:30
.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 "shared/notes/form", view: diff_view, supports_autocomplete: autocomplete
- elsif !current_user
.disabled-comment.text-center.prepend-top-default
Please
2018-03-17 18:26:18 +05:30
= link_to "register", new_session_path(:user, redirect_to_referer: 'yes', anchor: 'register-pane'), class: 'js-register-link'
2017-09-10 17:25:29 +05:30
or
2018-03-17 18:26:18 +05:30
= link_to "sign in", new_session_path(:user, redirect_to_referer: 'yes'), class: 'js-sign-in-link'
2017-09-10 17:25:29 +05:30
to comment
2018-03-17 18:26:18 +05:30
- elsif discussion_locked
.disabled-comment.text-center.prepend-top-default
%span.issuable-note-warning
= sprite_icon('lock', size: 16, css_class: 'icon')
%span
This
= issuable.class.to_s.titleize.downcase
is locked. Only
%b project members
can comment.
2017-09-10 17:25:29 +05:30
%script.js-notes-data{ type: "application/json" }= initial_notes_data(autocomplete).to_json.html_safe