save commit
This commit is contained in:
parent
a987f1469e
commit
c5f427b0a4
35 changed files with 399 additions and 0 deletions
2
app/views/teams/members/edit.html.haml
Normal file
2
app/views/teams/members/edit.html.haml
Normal file
|
@ -0,0 +1,2 @@
|
|||
%h1 Teams::Members#edit
|
||||
%p Find me in app/views/teams/members/edit.html.haml
|
17
app/views/teams/members/import.html.haml
Normal file
17
app/views/teams/members/import.html.haml
Normal 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"
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue