% toolbar :option => :groups %>
<% content_for :sidebar do %>
<%= render :partial => 'sidebar_show' %>
<% end %>
<% content_for :headers do %>
<%= stylesheet_link_tag "edit_user", :media => "screen, projection" %>
<%= javascript_include_tag 'jquery.validate' %>
<% end %>
<%= form_for(@group, :remote => true) do |f| %>
<% if @group.errors.any? %>
<% if !params[:section].present? or params[:section].eql?("about_us") %>
<%=t('edit.group_info')%>
<%= f.fields_for :profile do |profile_form| %>
<%= profile_form.label :description %>
<%= profile_form.text_area :description, :maxlength => 400, :class => "form_tag" %>
<% end %>
<% end %>
<% if !params[:section].present? or params[:section].eql?("contact_info") %>
<% content_for :javascript do %>
$(function() {
$("#contact_info").addClass('section_highlight');
});
<% end %>
<%=t('edit.contact')%>
<%= f.fields_for :profile do |profile_form| %>
<% end %>
<% end %>