%= error_messages_for 'project' %>
<%= f.text_field :name, :required => true, :size => 60, :style => "width:490px;" %>
<%= f.text_area :description, :rows => 8, :class => 'wiki-edit', :style => "font-size:small;width:490px;margin-left:10px;" %>
<%= f.text_field :identifier, :required => true, :size => 60, :style => "width:488px;", :disabled => @project.identifier_frozen?, :maxlength => Project::IDENTIFIER_MAX_LENGTH %> <% unless @project.identifier_frozen? %> <%= l(:text_length_between, :min => 1, :max => Project::IDENTIFIER_MAX_LENGTH) %> <%= l(:text_project_identifier_info).html_safe %> <% end %>
<%= f.text_field :homepage, :size => 60, :style => "width:488px;margin-left: 10px;" %>
<%= f.check_box :is_public, :style => "margin-left:10px;" %>
<% unless @project.allowed_parents.compact.empty? %><%= label(:project, :parent_id, l(:field_parent)) %><%= parent_project_select_tag(@project) %>
<% end %> <% if @project.safe_attribute? 'inherit_members' %><%= f.check_box :inherit_members %>
<% end %> <%= wikitoolbar_for 'project_description' %> <% @project.custom_field_values.each do |value| %><%= custom_field_tag_with_label :project, value %>
<% end %> <%= call_hook(:view_projects_form, :project => @project, :form => f) %> <% if @project.new_record? %> <% end %> <% if @project.new_record? || @project.module_enabled?('issue_tracking') %> <% unless @trackers.empty? %> <% end %> <% unless @issue_custom_fields.empty? %> <% end %> <% end %> <% unless @project.identifier_frozen? %> <% content_for :header_tags do %> <%= javascript_include_tag 'project_identifier' %> <% end %> <% end %> <% if !User.current.admin? && @project.inherit_members? && @project.parent && User.current.member_of?(@project.parent) %> <%= javascript_tag do %> $(document).ready(function() { $("#project_inherit_members").change(function(){ if (!$(this).is(':checked')) { if (!confirm("<%= escape_javascript(l(:text_own_membership_delete_confirmation)) %>")) { $("#project_inherit_members").attr("checked", true); } } }); }); <% end %> <% end %>