2012-10-03 11:49:43 +02:00
|
|
|
= render 'admin/shared/projects_head'
|
2012-09-26 15:49:20 +02:00
|
|
|
%h3.page_title
|
|
|
|
Project: #{@admin_project.name}
|
|
|
|
= link_to edit_admin_project_path(@admin_project), class: "btn right" do
|
|
|
|
%i.icon-edit
|
|
|
|
Edit
|
2011-10-08 23:36:38 +02:00
|
|
|
|
2012-10-04 09:51:35 +02:00
|
|
|
- if !@admin_project.has_post_receive_file? && @admin_project.commit
|
|
|
|
%br
|
|
|
|
.alert.alert-error
|
|
|
|
%span
|
|
|
|
%strong Important!
|
|
|
|
Project has commits but missing post-receive file.
|
|
|
|
%br
|
|
|
|
If you exported project manually - copy post-receive hook to bare repository
|
|
|
|
|
2012-04-16 22:33:03 +02:00
|
|
|
%br
|
2012-09-03 20:53:16 +02:00
|
|
|
%table.zebra-striped
|
|
|
|
%thead
|
|
|
|
%tr
|
|
|
|
%th Project
|
|
|
|
%th
|
2011-11-18 21:54:56 +01:00
|
|
|
%tr
|
|
|
|
%td
|
|
|
|
%b
|
|
|
|
Name:
|
|
|
|
%td
|
2012-06-04 00:37:27 +02:00
|
|
|
= @admin_project.name
|
2011-11-18 21:54:56 +01:00
|
|
|
%tr
|
|
|
|
%td
|
|
|
|
%b
|
|
|
|
Code:
|
|
|
|
%td
|
|
|
|
= @admin_project.code
|
|
|
|
%tr
|
|
|
|
%td
|
|
|
|
%b
|
|
|
|
Path:
|
|
|
|
%td
|
|
|
|
= @admin_project.path
|
|
|
|
%tr
|
|
|
|
%td
|
|
|
|
%b
|
2012-07-27 23:42:44 +02:00
|
|
|
Owner:
|
2011-11-18 21:54:56 +01:00
|
|
|
%td
|
2012-07-27 23:42:44 +02:00
|
|
|
= @admin_project.owner.name
|
2012-04-17 19:27:18 +02:00
|
|
|
%tr
|
|
|
|
%td
|
|
|
|
%b
|
|
|
|
Post Receive File:
|
|
|
|
%td
|
2012-08-11 00:07:50 +02:00
|
|
|
= check_box_tag :post_receive_file, 1, @admin_project.has_post_receive_file?, disabled: true
|
2012-04-16 22:33:03 +02:00
|
|
|
%br
|
|
|
|
%h3
|
|
|
|
Team
|
|
|
|
%small
|
|
|
|
(#{@admin_project.users_projects.count})
|
|
|
|
%br
|
2012-09-03 20:53:16 +02:00
|
|
|
%table.zebra-striped
|
2012-04-16 22:33:03 +02:00
|
|
|
%thead
|
|
|
|
%tr
|
|
|
|
%th Name
|
|
|
|
%th Project Access
|
|
|
|
%th Repository Access
|
|
|
|
%th
|
2011-11-18 21:54:56 +01:00
|
|
|
|
2012-04-16 22:33:03 +02:00
|
|
|
- @admin_project.users_projects.each do |tm|
|
|
|
|
%tr
|
|
|
|
%td
|
|
|
|
= link_to tm.user_name, admin_user_path(tm.user)
|
2012-09-26 15:49:20 +02:00
|
|
|
%td= tm.project_access_human
|
2012-08-11 00:07:50 +02:00
|
|
|
%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 danger small"
|
2011-10-08 23:36:38 +02:00
|
|
|
|
2012-04-16 22:33:03 +02:00
|
|
|
%br
|
|
|
|
%h3 Add new team member
|
|
|
|
%br
|
2012-08-11 00:07:50 +02:00
|
|
|
= form_tag team_update_admin_project_path(@admin_project), class: "bulk_import", method: :put do
|
2012-09-03 20:53:16 +02:00
|
|
|
%table.zebra-striped
|
2012-02-11 18:56:18 +01:00
|
|
|
%thead
|
|
|
|
%tr
|
2012-04-16 22:33:03 +02:00
|
|
|
%th Users
|
|
|
|
%th Project Access:
|
2012-02-11 18:56:18 +01:00
|
|
|
|
2012-04-16 22:33:03 +02:00
|
|
|
%tr
|
2012-09-10 08:09:55 +02:00
|
|
|
%td= select_tag :user_ids, options_from_collection_for_select(@users , :id, :name), multiple: true, data: {placeholder: 'Select users'}, class: 'chosen span5'
|
|
|
|
%td= select_tag :project_access, options_for_select(Project.access_options), {class: "project-access-select chosen span3"}
|
2012-01-21 18:03:47 +01:00
|
|
|
|
2012-04-16 22:33:03 +02:00
|
|
|
%tr
|
2012-08-11 00:07:50 +02:00
|
|
|
%td= submit_tag 'Add', class: "btn primary"
|
2012-04-16 22:33:03 +02:00
|
|
|
%td
|
2012-06-04 00:37:27 +02:00
|
|
|
Read more about project permissions
|
2012-08-11 00:07:50 +02:00
|
|
|
%strong= link_to "here", help_permissions_path, class: "vlink"
|