2012-10-24 06:46:25 +00:00
|
|
|
<div class="groups map-block back">
|
2012-10-15 05:54:29 +00:00
|
|
|
<h4><span><%= role.title %></span></h4>
|
|
|
|
<div class="form-horizontal">
|
2012-10-15 06:44:48 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2012-10-18 10:36:21 +00:00
|
|
|
<% role.sub_roles.each do |sub_role| %>
|
2012-10-24 06:46:25 +00:00
|
|
|
<% sub_role_disable = @user.sub_roles.include?(sub_role) ? false : true %>
|
|
|
|
<%= hidden_field_tag("user[disable_sub_role][id][#{sub_role.id}]",sub_role_disable,:for=>@form_index,:class=>"subrole_disable_field",:value=>sub_role_disable)%>
|
2012-10-18 10:36:21 +00:00
|
|
|
<%#= hidden_field_tag("[user][new_attribute_values][sub_role][disable][#{sub_role.id}]",sub_role_disable)%>
|
2012-10-24 06:46:25 +00:00
|
|
|
<legend>
|
|
|
|
<button for=<%=@form_index%> class="onoff pull-right <%= sub_role_disable ? 'disabled' : '' %> ">ON</button><%= sub_role.title %>
|
|
|
|
</legend>
|
|
|
|
<div class="controls-block <%= sub_role_disable ? 'hide' : '' %>" >
|
2012-10-15 06:44:48 +00:00
|
|
|
<% sub_role.attribute_fields.each do |af|%>
|
2012-10-24 06:46:25 +00:00
|
|
|
<%= af.block_helper(@user,@form_index)%>
|
2012-10-15 05:54:29 +00:00
|
|
|
<% @form_index = @form_index +1 %>
|
|
|
|
<% end %>
|
2012-10-15 06:44:48 +00:00
|
|
|
</div>
|
2012-10-15 05:54:29 +00:00
|
|
|
|
2012-10-15 06:44:48 +00:00
|
|
|
<% end %>
|
2012-10-15 05:54:29 +00:00
|
|
|
|
2012-10-15 06:44:48 +00:00
|
|
|
|
2012-10-15 05:54:29 +00:00
|
|
|
</div>
|
|
|
|
</div>
|