% labelled_form_for(:environment, @environment, :url => {:action => 'update'}) do |f| %>
<% @features.each do |feature, text| %>
<%= text %> |
<%= check_box_tag "environment[enabled_features][]", feature, @environment.enabled?(feature) %> |
<% end %>
<%= labelled_form_field(_('Organization Approval Method'), select_organization_approval_method('environment', 'organization_approval_method')) %>
<% button_bar do %>
<%= submit_button('save', _('Save changes')) %>
<% end %>
<% end %>