<%= text_field_tag 'profile_data[nickname]', @profile_data.nickname, :id => 'profile_data_nickname', :size => 30, :maxlength => 16 %>
<%= f.text_field(:acronym) %> <%= f.text_field(:foundation_year) %> <%= f.text_field(:contact_person) %> <%= f.text_field(:contact_email) %> <%= f.text_field(:legal_form) %> <%= f.text_field(:economic_activity) %> <%= f.text_area(:management_information, :rows => 5) %> <%= f.text_area(:description, :rows => 5) if @profile.kind_of?(Community) %>

<%= _('Moderation options') %>

<%= _('New members must be approved:')%>
<%= radio_button 'profile_data', 'closed', 'true', :style => 'float: left' %>
<%= _('Before joining this group (a moderator has to accept the member in pending request before member can access the intranet and/or the website).') %>
<%= radio_button 'profile_data', 'closed', 'false', :style => 'float: left' %>
<%= _('After joining this group (a moderator can always desactivate access for users later).') %>

<%= _('New articles must be approved:')%>
<%= radio_button 'profile_data', 'moderated_articles', 'true', :style => 'float: left' %>
<%= _('Before being published in this group (a moderator has to accept the article in pending request before the article be listed as a article of this group.') %>
<%= radio_button 'profile_data', 'moderated_articles', 'false', :style => 'float: left' %>
<%= _('After being published in this group (a moderator can always remove publicated articles later).') %>