%= error_messages_for 'role' %>
<%= f.text_field :name, :required => true %>
<%= f.check_box :assignable %>
<% end %> <% unless @role.anonymous? %><%= f.select :issues_visibility, Role::ISSUES_VISIBILITY_OPTIONS.collect {|v| [l(v.last), v.first]} %>
<% end %> <% unless @role.anonymous? %><%= f.select :time_entries_visibility, Role::TIME_ENTRIES_VISIBILITY_OPTIONS.collect {|v| [l(v.last), v.first]} %>
<% end %><%= f.select :users_visibility, Role::USERS_VISIBILITY_OPTIONS.collect {|v| [l(v.last), v.first]} %>
<% if @role.new_record? && @roles.any? %><%= select_tag(:copy_workflow_from, content_tag("option") + options_from_collection_for_select(@roles, :id, :name, params[:copy_workflow_from] || @copy_from.try(:id))) %>
<% end %>