<%= form_for(@arm, html: { role: :form }) do |f| %> <% if @arm.errors.any? %> <% end %>
<%= f.label :title %> <%= f.text_field :title, class: "form-control" %>
<% if social_features? %>
<%= f.check_box :is_social %> <%= f.label :is_social %>

The "Is Social" feature adds a social networking component to the study.
* This requires participants to have display names.

<%= f.check_box :has_woz %> <%= f.label :has_woz, "Wizard of Oz" %>

The "Wizard of Oz" feature hides moderator functionality, to limit the ways that a moderator can interact through the social dashboard.
* This requires the social feature to be enabled.

<%= f.check_box :can_message_after_membership_complete %> <%= f.label :can_message_after_membership_complete, "Completed membership messaging" %>

This will allow participants to compose and send messages after their membership is complete.
* This requires the social feature to be enabled.

<% end %> <%= f.submit button_text, class: "btn btn-primary" %> <%= link_to "Cancel", cancel_path, class: "btn btn-default" %> <% end %>