new.html.erb
12 lines
| 575 B
| text/plain
|
TextLexer
|
r2707 | <h2><%= link_to l(:label_user_plural), :controller => 'users', :action => 'index' %> » <%=l(:label_user_new)%></h2> | ||
|
r2 | |||
|
r4101 | <% labelled_tabular_form_for :user, @user, :url => { :action => "create" }, :html => { :class => nil } do |f| %> | ||
|
r2923 | <%= render :partial => 'form', :locals => { :f => f } %> | ||
|
r6047 | <% if email_delivery_enabled? %> | ||
|
r2923 | <p><label><%= check_box_tag 'send_information', 1, true %> <%= l(:label_send_information) %></label></p> | ||
|
r6047 | <% end %> | ||
|
r3090 | <p> | ||
<%= submit_tag l(:button_create) %> | ||||
<%= submit_tag l(:button_create_and_continue), :name => 'continue' %> | ||||
</p> | ||||
|
r543 | <% end %> | ||