<%= _("Note that the creation of communities in this environment is restricted. Your request to create this new community will be sent to %{environment} administrators and will be approved or rejected according to their methods and criteria.") % { :environment => environment.name }%>
<%end %>
<%= error_messages_for :community %>
<% labelled_form_for :community, @community, :html => { :multipart => true } do |f| %>
<%= required_fields_message %>
<%= required f.text_field(:name) %>
<%= render :partial => 'shared/organization_custom_fields', :locals => { :f => f, :object_name => 'community', :profile => @community } %>
<% f.fields_for :image_builder, @community.image do |i| %>
<%= file_field_or_thumbnail(_('Image:'), @community.image, i) %>
<% end %>
<%= _('New members must be approved:')%>
<% button_bar do %>
<%= submit_button(:save, _('Create')) %>
<%= button(:cancel, _('Cancel'), :action => 'index') %>
<% end %>
<% end %>