Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kazuhiko Shiozaki
gitlab-ce
Commits
da98cebc
Commit
da98cebc
authored
Jun 14, 2013
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #4314 from Undev/feature/redesign_forms
Switch form from table to plain form without member list
parents
a59fe739
815c186b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
28 deletions
+26
-28
app/views/admin/teams/members/new.html.haml
app/views/admin/teams/members/new.html.haml
+26
-28
No files found.
app/views/admin/teams/members/new.html.haml
View file @
da98cebc
%h3
.page_title
Team:
#{
@team
.
name
}
%fieldset
%legend
Members (
#{
@team
.
members
.
count
}
)
=
form_tag
admin_team_members_path
(
@team
),
id:
"team_members"
,
class:
"bulk_import"
,
method: :post
do
%table
#members_list
%thead
%tr
%th
User name
%th
Default project access
%th
Team access
%th
-
@team
.
members
.
each
do
|
member
|
%tr
.member
%td
=
link_to
[
:admin
,
member
]
do
=
member
.
name
%small
=
"(
#{
member
.
email
}
)"
%td
=
@team
.
human_default_projects_access
(
member
)
%td
=
@team
.
admin?
(
member
)
?
"Admin"
:
"Member"
%td
%tr
%td
=
select_tag
:user_ids
,
options_from_collection_for_select
(
@users
,
:id
,
:name_with_username
),
multiple:
true
,
data:
{
placeholder:
'Select users'
},
class:
'chosen span5'
%td
=
select_tag
:default_project_access
,
options_for_select
(
Project
.
access_options
),
{
class:
"project-access-select chosen span3"
}
%td
%span
=
check_box_tag
:group_admin
%span
Admin?
%td
=
submit_tag
'Add'
,
class:
"btn btn-primary"
,
id: :add_members_to_team
New members for
=
link_to
@team
.
name
,
admin_team_path
(
@team
)
team
%hr
=
form_tag
admin_team_members_path
(
@team
),
id:
"team_members"
,
class:
"bulk_import"
,
method: :post
do
-
if
@team
.
errors
.
any?
.alert.alert-error
%span
=
@team
.
errors
.
full_messages
.
first
.clearfix
=
label_tag
:user_ids
do
Users to add
.input
=
select_tag
:user_ids
,
options_from_collection_for_select
(
@users
,
:id
,
:name_with_username
),
multiple:
true
,
data:
{
placeholder:
'Select users'
},
class:
'chosen span5'
.clearfix.group-description-holder
=
label_tag
:default_project_access
do
Default permission in projects
.input
=
select_tag
:default_project_access
,
options_for_select
(
Project
.
access_options
),
{
class:
"project-access-select chosen span3"
}
.clearfix
=
label_tag
:group_admin
do
Is team admin
.input
=
check_box_tag
:group_admin
.clearfix.form-actions
=
submit_tag
'Add users into team'
,
class:
"btn btn-primary"
,
id: :add_members_to_team
=
link_to
'Cancel'
,
:back
,
class:
"btn"
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment