gitlabhq/app/views/team_members/import.html.haml

18 lines
690 B
Plaintext
Raw Normal View History

2012-10-24 13:20:53 +02:00
= render "projects/project_head"
%h3.page_title
= "Import team from another project"
%hr
%p.slead
Read more about team import #{link_to "here", '#', class: 'vlink'}.
= form_tag apply_import_project_team_members_path(@project), method: 'post' do
%p.slead Choose project you want to use as team source:
.padded
= label_tag :source_project_id, "Project"
.input= select_tag(:source_project_id, options_from_collection_for_select(current_user.projects, :id, :name), prompt: "Select project", class: "chosen xxlarge", required: true)
.actions
2012-10-24 14:23:04 +02:00
= submit_tag 'Import', class: "btn save-btn"
2012-10-24 13:20:53 +02:00
= link_to "Cancel", project_team_index_path(@project), class: "btn cancel-btn"