save commit

This commit is contained in:
Andrey Kumanyaev 2013-01-19 21:58:13 +04:00 committed by Dmitriy Zaporozhets
parent a987f1469e
commit c5f427b0a4
35 changed files with 399 additions and 0 deletions

View file

@ -0,0 +1,2 @@
%h1 Teams::Members#edit
%p Find me in app/views/teams/members/edit.html.haml

View file

@ -0,0 +1,17 @@
= 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.authorized_projects, :id, :name_with_namespace), prompt: "Select project", class: "chosen xxlarge", required: true)
.actions
= submit_tag 'Import', class: "btn save-btn"
= link_to "Cancel", project_team_index_path(@project), class: "btn cancel-btn"