2012-02-11 18:56:18 +01:00
|
|
|
%h3
|
|
|
|
= @admin_user.name
|
2012-04-16 22:33:03 +02:00
|
|
|
- if @admin_user.blocked
|
|
|
|
%small Blocked
|
|
|
|
- if @admin_user.admin
|
|
|
|
%small Administrator
|
2012-02-11 18:56:18 +01:00
|
|
|
= link_to 'Edit', edit_admin_user_path(@admin_user), :class => "btn small right"
|
2011-10-08 23:36:38 +02:00
|
|
|
|
2012-04-16 22:33:03 +02:00
|
|
|
%br
|
2012-02-11 18:56:18 +01:00
|
|
|
|
2012-04-16 22:33:03 +02:00
|
|
|
%table.zebra-striped.table-bordered
|
2011-11-18 21:55:13 +01:00
|
|
|
%tr
|
|
|
|
%td
|
|
|
|
%b
|
|
|
|
Email:
|
|
|
|
%td
|
|
|
|
= @admin_user.email
|
|
|
|
%tr
|
|
|
|
%td
|
|
|
|
%b
|
|
|
|
Admin:
|
|
|
|
%td= check_box_tag "admin", 1, @admin_user.admin, :disabled => :disabled
|
2012-04-13 07:12:34 +02:00
|
|
|
%tr
|
|
|
|
%td
|
|
|
|
%b
|
|
|
|
Blocked:
|
|
|
|
%td= check_box_tag "blocked", 1, @admin_user.blocked, :disabled => :disabled
|
2011-11-18 21:55:13 +01:00
|
|
|
%tr
|
|
|
|
%td
|
|
|
|
%b
|
|
|
|
Projects limit:
|
|
|
|
%td
|
|
|
|
= @admin_user.projects_limit
|
|
|
|
- unless @admin_user.skype.empty?
|
|
|
|
%tr
|
|
|
|
%td
|
|
|
|
%b
|
|
|
|
Skype:
|
|
|
|
%td
|
|
|
|
= @admin_user.skype
|
|
|
|
- unless @admin_user.linkedin.empty?
|
|
|
|
%tr
|
|
|
|
%td
|
|
|
|
%b
|
|
|
|
Linkedin:
|
|
|
|
%td
|
|
|
|
= @admin_user.linkedin
|
|
|
|
- unless @admin_user.twitter.empty?
|
|
|
|
%tr
|
|
|
|
%td
|
|
|
|
%b
|
|
|
|
Twitter:
|
|
|
|
%td
|
|
|
|
= @admin_user.twitter
|
2011-10-08 23:36:38 +02:00
|
|
|
|
|
|
|
|
2012-04-16 22:33:03 +02:00
|
|
|
%br
|
|
|
|
%h3 Add User to Projects
|
|
|
|
%br
|
2012-02-11 18:56:18 +01:00
|
|
|
= form_tag team_update_admin_user_path(@admin_user), :class => "bulk_import", :method => :put do
|
2012-04-16 22:33:03 +02:00
|
|
|
%table.table-bordered
|
2012-02-11 18:56:18 +01:00
|
|
|
%thead
|
2011-10-08 23:36:38 +02:00
|
|
|
%tr
|
2012-02-11 18:56:18 +01:00
|
|
|
%th Projects
|
|
|
|
%th Project Access:
|
|
|
|
|
|
|
|
%tr
|
|
|
|
%td= select_tag :project_ids, options_from_collection_for_select(@projects , :id, :name), :multiple => true
|
|
|
|
%td= select_tag :project_access, options_for_select(Project.access_options), :class => "project-access-select"
|
|
|
|
|
2012-04-16 22:33:03 +02:00
|
|
|
%tr
|
|
|
|
%td= submit_tag 'Add', :class => "btn primary"
|
|
|
|
%td
|
|
|
|
Read more about project permissions
|
|
|
|
%strong= link_to "here", help_permissions_path, :class => "vlink"
|
|
|
|
%br
|
|
|
|
|
|
|
|
- if @admin_user.projects.present?
|
|
|
|
%h3 Projects
|
|
|
|
%br
|
2012-02-11 18:56:18 +01:00
|
|
|
|
2012-04-16 22:33:03 +02:00
|
|
|
%table.zebra-striped.table-bordered
|
|
|
|
%tr
|
|
|
|
%thead
|
|
|
|
%th Name
|
|
|
|
%th Project Access
|
|
|
|
%th
|
|
|
|
%th
|
|
|
|
|
|
|
|
- @admin_user.users_projects.each do |tm|
|
|
|
|
- project = tm.project
|
|
|
|
%tr
|
|
|
|
%td= link_to project.name, admin_project_path(project)
|
|
|
|
%td= select_tag :tm_project_access, options_for_select(Project.access_options, tm.project_access), :class => "medium project-access-select", :disabled => :disabled
|
|
|
|
%td= link_to 'Edit Access', edit_admin_team_member_path(tm), :class => "btn small"
|
|
|
|
%td= link_to 'Remove from team', admin_team_member_path(tm), :confirm => 'Are you sure?', :method => :delete, :class => "btn small danger"
|
2012-02-11 18:56:18 +01:00
|
|
|
|
|
|
|
:css
|
|
|
|
form select {
|
|
|
|
width:150px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#project_ids {
|
|
|
|
width:300px;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
:javascript
|
|
|
|
$('select#project_ids').chosen();
|
|
|
|
$('select#repo_access').chosen();
|
|
|
|
$('select#project_access').chosen();
|
2011-10-08 23:36:38 +02:00
|
|
|
|