2012-09-26 15:49:20 +02:00
|
|
|
%h3.page_title
|
2012-11-25 17:52:12 +01:00
|
|
|
Project: #{@project.name_with_namespace}
|
2012-11-23 05:31:09 +01:00
|
|
|
= link_to edit_admin_project_path(@project), class: "btn right" do
|
2012-09-26 15:49:20 +02:00
|
|
|
%i.icon-edit
|
|
|
|
Edit
|
2011-10-08 23:36:38 +02:00
|
|
|
|
2012-12-10 04:14:05 +01:00
|
|
|
- if @project.has_commits?
|
|
|
|
- if !@project.has_post_receive_file?
|
|
|
|
%br
|
|
|
|
.alert.alert-error
|
|
|
|
%span
|
|
|
|
%strong Project has commits but missing post-receive file.
|
|
|
|
%br
|
|
|
|
If you exported project manually - make a link of post-receive hook file from gitolite to project repository
|
|
|
|
- elsif !@project.valid_post_receive_file?
|
|
|
|
%br
|
|
|
|
.alert.alert-error
|
|
|
|
%span
|
|
|
|
%strong Project has invalid post-receive file.
|
|
|
|
%br
|
|
|
|
1. Make sure your gitolite instace has latest post-receive file.
|
|
|
|
%br
|
|
|
|
2. Make a link of post-receive hook file from gitolite to project repository
|
|
|
|
|
2012-10-04 09:51:35 +02:00
|
|
|
|
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-11-23 05:31:09 +01:00
|
|
|
= @project.name
|
2012-11-30 17:26:17 +01:00
|
|
|
%tr
|
|
|
|
%td
|
|
|
|
%b
|
|
|
|
Namespace:
|
|
|
|
%td
|
|
|
|
- if @project.namespace
|
|
|
|
= @project.namespace.human_name
|
|
|
|
- else
|
|
|
|
Global
|
2011-11-18 21:54:56 +01:00
|
|
|
%tr
|
|
|
|
%td
|
|
|
|
%b
|
2012-12-14 06:14:05 +01:00
|
|
|
Owned by:
|
2011-11-18 21:54:56 +01:00
|
|
|
%td
|
2012-12-14 06:14:05 +01:00
|
|
|
- if @project.chief
|
|
|
|
= link_to @project.chief.name, admin_user_path(@project.chief)
|
|
|
|
- else
|
|
|
|
(deleted)
|
2011-11-18 21:54:56 +01:00
|
|
|
%tr
|
|
|
|
%td
|
|
|
|
%b
|
2012-11-30 17:26:17 +01:00
|
|
|
Created by:
|
2011-11-18 21:54:56 +01:00
|
|
|
%td
|
2012-11-23 05:31:09 +01:00
|
|
|
= @project.owner_name || '(deleted)'
|
2012-12-14 06:14:05 +01:00
|
|
|
%tr
|
|
|
|
%td
|
|
|
|
%b
|
|
|
|
Created at:
|
|
|
|
%td
|
|
|
|
= @project.created_at.stamp("March 1, 1999")
|
|
|
|
|
|
|
|
%table.zebra-striped
|
|
|
|
%thead
|
|
|
|
%tr
|
|
|
|
%th Repository
|
|
|
|
%th
|
|
|
|
%tr
|
|
|
|
%td
|
|
|
|
%b
|
|
|
|
FS Path:
|
|
|
|
%td
|
|
|
|
%code= @project.path_to_repo
|
|
|
|
%tr
|
|
|
|
%td
|
|
|
|
%b
|
|
|
|
Smart HTTP:
|
|
|
|
%td
|
|
|
|
= link_to @project.http_url_to_repo
|
|
|
|
%tr
|
|
|
|
%td
|
|
|
|
%b
|
|
|
|
SSH:
|
|
|
|
%td
|
|
|
|
= link_to @project.ssh_url_to_repo
|
|
|
|
%tr
|
|
|
|
%td
|
|
|
|
%b
|
|
|
|
Last commit at:
|
|
|
|
%td
|
|
|
|
= last_commit(@project)
|
2012-04-17 19:27:18 +02:00
|
|
|
%tr
|
|
|
|
%td
|
|
|
|
%b
|
|
|
|
Post Receive File:
|
|
|
|
%td
|
2012-11-23 05:31:09 +01:00
|
|
|
= check_box_tag :post_receive_file, 1, @project.has_post_receive_file?, disabled: true
|
2012-12-14 06:14:05 +01:00
|
|
|
|
2012-04-16 22:33:03 +02:00
|
|
|
%br
|
2012-12-10 04:14:05 +01:00
|
|
|
%h5
|
2012-04-16 22:33:03 +02:00
|
|
|
Team
|
|
|
|
%small
|
2012-11-23 05:31:09 +01:00
|
|
|
(#{@project.users_projects.count})
|
2012-04-16 22:33:03 +02:00
|
|
|
%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-11-23 05:31:09 +01:00
|
|
|
- @project.users_projects.each do |tm|
|
2012-04-16 22:33:03 +02:00
|
|
|
%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
|
2012-12-10 04:14:05 +01:00
|
|
|
%h5 Add new team member
|
2012-04-16 22:33:03 +02:00
|
|
|
%br
|
2012-11-23 05:31:09 +01:00
|
|
|
= form_tag team_update_admin_project_path(@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"
|