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

39 lines
1.5 KiB
Text
Raw Normal View History

2018-03-17 18:26:18 +05:30
- issuable = @issue || @merge_request
- discussion_locked = issuable&.discussion_locked?
2018-11-08 19:23:39 +05:30
%ul#notes-list.notes.main-notes-list.timeline
= render "shared/notes/notes"
2017-08-17 22:00:37 +05:30
= render 'shared/notes/edit_form', project: @project
2017-09-10 17:25:29 +05:30
- if can_create_note?
2018-11-08 19:23:39 +05:30
%ul.notes.notes-form.timeline
2017-09-10 17:25:29 +05:30
%li.timeline-entry
.timeline-entry-inner
.flash-container.timeline-content
2016-08-24 12:49:21 +05:30
2018-11-08 19:23:39 +05:30
.timeline-icon.d-none.d-sm-none.d-md-block
2018-11-18 11:00:15 +05:30
%a.author-link{ href: user_path(current_user) }
2018-03-27 19:54:05 +05:30
= image_tag avatar_icon_for_user(current_user), alt: current_user.to_reference, class: 'avatar s40'
2017-09-10 17:25:29 +05:30
.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.
2018-03-27 19:54:05 +05:30
-# haml-lint:disable InlineJavaScript
2017-09-10 17:25:29 +05:30
%script.js-notes-data{ type: "application/json" }= initial_notes_data(autocomplete).to_json.html_safe