<%= form_tag url_for(:action => 'setup_change', :name =>"the_form") %>
Selection des modules actifs
<%
key=1000
@availableProfiles.each { |pro|
key=key+1
%>
<%= check_box_tag("check_#{key}", value =1, checked = @activeProfiles.include?(pro), options = {})%>
<%=pro%>
<%}%>
Fichiers sources
<% if @sourceFiles.size<1 %>
liste vide
<%end%>
<%
key=1000
@sourceFiles.each { |fileName|
key=key+1
%>
<%= check_box_tag("file_#{key}", value =1, checked = true, options = {:size=>"100"})%>
<%=fileName%>
<%}%>
add --> <%= text_field_with_auto_complete :add_file,value="",options={:size=>100} %>
<%= submit_tag label="Save Configuration in running process" %>
<%= submit_tag label="Save in cookies" %>
<%= submit_tag label="Save Configuration on disk" %>