annotate app/views/users/new.html.erb @ 1115:433d4f72a19b
redmine-2.2
Update to Redmine SVN revision 11137 on 2.2-stable branch
author |
Chris Cannam |
date |
Mon, 07 Jan 2013 12:01:42 +0000 |
parents |
cbb26bc654de |
children |
622f24f53b42 261b3d9a4903 |
rev |
line source |
Chris@909
|
1 <h2><%= link_to l(:label_user_plural), users_path %> » <%=l(:label_user_new)%></h2>
|
chris@37
|
2
|
Chris@1115
|
3 <%= labelled_form_for @user do |f| %>
|
Chris@909
|
4 <%= render :partial => 'form', :locals => { :f => f } %>
|
Chris@909
|
5 <% if email_delivery_enabled? %>
|
Chris@909
|
6 <p><label><%= check_box_tag 'send_information', 1, true %> <%= l(:label_send_information) %></label></p>
|
Chris@909
|
7 <% end %>
|
Chris@909
|
8 <p>
|
Chris@909
|
9 <%= submit_tag l(:button_create) %>
|
Chris@909
|
10 <%= submit_tag l(:button_create_and_continue), :name => 'continue' %>
|
Chris@909
|
11 </p>
|
chris@37
|
12 <% end %>
|