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 @ 443:350acce374a2

History | View | Annotate | Download (530 Bytes)

1
<h2><%= link_to l(:label_user_plural), :controller => 'users', :action => 'index' %> &#187; <%=l(:label_user_new)%></h2>
2

    
3
<% labelled_tabular_form_for :user, @user, :url => { :action => "create" }, :html => { :class => nil } do |f| %>
4
        <%= render :partial => 'form', :locals => { :f => f } %>
5
        <p><label><%= check_box_tag 'send_information', 1, true %> <%= l(:label_send_information) %></label></p>
6
        <p>
7
                <%= submit_tag l(:button_create) %>
8
                <%= submit_tag l(:button_create_and_continue), :name => 'continue' %>
9
        </p>
10
<% end %>