Welcome to mirror list, hosted at ThFree Co, Russian Federation.

new_user_map.html.haml « fogbugz « import « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ff2f989c509f63d7a6f7c6ff00d02c1f0de384d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
- page_title _('User map'), _('FogBugz import')
- header_title _("Projects"), root_path
%h3.page-title
  %i.fa.fa-bug
  = _('Import projects from FogBugz')
%hr

= form_tag create_user_map_import_fogbugz_path do
  %p
    = _("Customize how FogBugz email addresses and usernames are imported into GitLab. In the next step, you'll be able to select the projects you want to import.")
  %p
    = _("The user map is a mapping of the FogBugz users that participated on your projects to the way their email address and usernames will be imported into GitLab. You can change this by populating the table below.")
  %ul
    %li
      %strong= _("Default: Map a FogBugz account ID to a full name")
      %p
        = _("An empty GitLab User field will add the FogBugz user's full name (e.g. \"By John Smith\") in the description of all issues and comments. It will also associate and/or assign these issues and comments with the project creator.")
    %li
      %strong= _("Map a FogBugz account ID to a GitLab user")
      %p
        = _('Selecting a GitLab user will add a link to the GitLab user in the descriptions of issues and comments (e.g. "By <a href="#">@johnsmith</a>"). It will also associate and/or assign these issues and comments with the selected user.').html_safe

  .table-holder
    %table.table
      %thead
        %tr
          %th= _("ID")
          %th= _("Name")
          %th= _("Email")
          %th= _("GitLab User")
      %tbody
        - @user_map.each do |id, user|
          %tr
            %td= (id)
            %td= text_field_tag "users[#{id}][name]", user[:name], class: 'form-control'
            %td= text_field_tag "users[#{id}][email]", user[:email], class: 'form-control'
            %td
              = users_select_tag("users[#{id}][gitlab_user]", class: 'custom-form-control',
                scope: :all, email_user: true, selected: user[:gitlab_user])

  .form-actions
    = submit_tag _('Continue to the next step'), class: 'btn btn-create'