<% content_for :tabbar_title do %> Add User to <%= @project.name %> <% end %>
<%= simple_form_for @member, url: [@organization, @project, :members], method: :post do |f| %> <%= f.input :email %> <%= f.input :name %> <%= f.input :role do %> <%= f.select :role, ProjectUser::ROLES, include_blank: true %> <% end %> <%= f.button :submit, class: "small button radius right" %> <% end %>