2017-09-10 17:25:29 +05:30
|
|
|
- supports_quick_actions = local_assigns.fetch(:supports_quick_actions, false)
|
2021-11-18 22:05:49 +05:30
|
|
|
- supports_file_upload = local_assigns.fetch(:supports_file_upload, true)
|
2016-06-02 11:05:42 +05:30
|
|
|
.comment-toolbar.clearfix
|
|
|
|
.toolbar-text
|
2022-03-02 08:16:31 +05:30
|
|
|
= link_to _('Markdown'), help_page_path('user/markdown'), target: '_blank', rel: 'noopener noreferrer'
|
2017-09-10 17:25:29 +05:30
|
|
|
- if supports_quick_actions
|
2016-09-13 17:45:13 +05:30
|
|
|
and
|
2022-03-02 08:16:31 +05:30
|
|
|
= link_to _('quick actions'), help_page_path('user/project/quick_actions'), target: '_blank', rel: 'noopener noreferrer'
|
2016-09-13 17:45:13 +05:30
|
|
|
are
|
|
|
|
- else
|
|
|
|
is
|
|
|
|
supported
|
2017-09-10 17:25:29 +05:30
|
|
|
|
2021-11-18 22:05:49 +05:30
|
|
|
- if supports_file_upload
|
|
|
|
%span.uploading-container
|
|
|
|
%span.uploading-progress-container.hide
|
2020-10-24 23:57:45 +05:30
|
|
|
= sprite_icon('media', css_class: 'gl-icon gl-vertical-align-text-bottom')
|
2021-11-18 22:05:49 +05:30
|
|
|
%span.attaching-file-message
|
|
|
|
-# Populated by app/assets/javascripts/dropzone_input.js
|
|
|
|
%span.uploading-progress 0%
|
2022-05-07 20:08:51 +05:30
|
|
|
= gl_loading_icon(inline: true, css_class: 'gl-mr-2')
|
2017-09-10 17:25:29 +05:30
|
|
|
|
2021-11-18 22:05:49 +05:30
|
|
|
%span.uploading-error-container.hide
|
|
|
|
%span.uploading-error-icon
|
|
|
|
= sprite_icon('media', css_class: 'gl-icon gl-vertical-align-text-bottom')
|
|
|
|
%span.uploading-error-message
|
|
|
|
-# Populated by app/assets/javascripts/dropzone_input.js
|
|
|
|
%button.btn.gl-button.btn-link.gl-vertical-align-baseline.retry-uploading-link
|
|
|
|
%span.gl-button-text
|
|
|
|
= _("Try again")
|
|
|
|
= _("or")
|
|
|
|
%button.btn.gl-button.btn-link.attach-new-file.markdown-selector.gl-vertical-align-baseline
|
|
|
|
%span.gl-button-text
|
|
|
|
= _("attach a new file")
|
|
|
|
= _(".")
|
2017-09-10 17:25:29 +05:30
|
|
|
|
2021-11-18 22:05:49 +05:30
|
|
|
%button.btn.gl-button.btn-link.button-attach-file.markdown-selector.button-attach-file.gl-vertical-align-text-bottom
|
|
|
|
= sprite_icon('media')
|
|
|
|
%span.gl-button-text
|
|
|
|
= _("Attach a file")
|
|
|
|
|
|
|
|
%button.btn.gl-button.btn-link.button-cancel-uploading-files.gl-vertical-align-baseline.hide
|
|
|
|
%span.gl-button-text
|
|
|
|
= _("Cancel")
|