Merge remote-tracking branch 'parent/main' into upstream-20240906
This commit is contained in:
commit
f18eabfe75
689 changed files with 4369 additions and 2434 deletions
|
@ -1,4 +1,4 @@
|
|||
.announcements-list__item
|
||||
.announcements-list__item{ id: dom_id(announcement) }
|
||||
= link_to edit_admin_announcement_path(announcement), class: 'announcements-list__item__title' do
|
||||
= truncate(announcement.text)
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
%tr
|
||||
%tr{ id: dom_id(invite) }
|
||||
%td
|
||||
.input-copy
|
||||
.input-copy__wrapper
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
|
||||
.applications-list
|
||||
- @applications.each do |application|
|
||||
.applications-list__item
|
||||
.applications-list__item{ id: dom_id(application) }
|
||||
- if application.website.present?
|
||||
= link_to application.name, application.website, target: '_blank', rel: 'noopener noreferrer', class: 'announcements-list__item__title'
|
||||
- else
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
= f.input :mode,
|
||||
as: :radio_buttons,
|
||||
collection_wrapper_tag: 'ul',
|
||||
collection: Import::MODES,
|
||||
collection: Form::Import::MODES,
|
||||
item_wrapper_tag: 'li',
|
||||
label_method: ->(mode) { safe_join([I18n.t("imports.modes.#{mode}"), content_tag(:span, I18n.t("imports.modes.#{mode}_long"), class: 'hint')]) }
|
||||
|
||||
|
@ -46,7 +46,7 @@
|
|||
%th= t('imports.failures')
|
||||
%tbody
|
||||
- @recent_imports.each do |import|
|
||||
%tr
|
||||
%tr{ id: dom_id(import) }
|
||||
%td= t("imports.types.#{import.type}")
|
||||
%td
|
||||
- if import.state_unconfirmed?
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue