To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / app / views / users / new.html.erb @ 912:5e80956cc792

History | View | Annotate | Download (500 Bytes)

1 909:cbb26bc654de Chris
<h2><%= link_to l(:label_user_plural), users_path %> &#187; <%=l(:label_user_new)%></h2>
2 37:94944d00e43c chris
3 909:cbb26bc654de Chris
<% form_for @user, :builder => TabularFormBuilder do |f| %>
4
  <%= render :partial => 'form', :locals => { :f => f } %>
5
  <% if email_delivery_enabled? %>
6
  <p><label><%= check_box_tag 'send_information', 1, true %> <%= l(:label_send_information) %></label></p>
7
  <% end %>
8
  <p>
9
    <%= submit_tag l(:button_create) %>
10
    <%= submit_tag l(:button_create_and_continue), :name => 'continue' %>
11
  </p>
12 37:94944d00e43c chris
<% end %>