File: bulk_import_csv_user_mapping.text.erb

package info (click to toggle)
gitlab 17.6.5-19
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 629,368 kB
  • sloc: ruby: 1,915,304; javascript: 557,307; sql: 60,639; xml: 6,509; sh: 4,567; makefile: 1,239; python: 406
file content (15 lines) | stat: -rw-r--r-- 948 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<%= @title %>

<% if @has_errors %>
<%= safe_format(s_('BulkImport|Items assigned to placeholder users were reassigned to users in %{strong_open}%{group}%{strong_close} according to the uploaded CSV file.'), strong_open: '', strong_close: '', group: @group.name) %>
<% else %>
<%= safe_format(s_('BulkImport|All items assigned to placeholder users were reassigned to users in %{strong_open}%{group}%{strong_close} according to the uploaded CSV file.'), strong_open: '', strong_close: '', group: @group.name) %>
<% end %>

- <%= safe_format(s_('BulkImport|%{count} placeholder users matched to users.'), count: @success_count) %>
<% if @has_errors %>
- <%= safe_format(s_('BulkImport|%{count} placeholder users not matched to users.'), count: @failed_count) %>
<% end %>

<% extra_params = @has_errors ? { status: 'failed' } : {} %>
<%= s_('BulkImport|Review results') %>: <%= group_group_members_url(@group, tab: 'placeholders', **extra_params) %>