blob: 0fdc9f0afa8d0adf3e2f978af276f0959bb952a8 [file] [log] [blame]
<% @heading = 'Edit User Details' %>
<% @overview = "Use the form below to edit details of user #{link_to_user(@user)}. The page field is part of your public page. " %>
<% tinymce 'advanced' %>
<%= error_messages_for 'user' %>
<% tabular_form_for :user do |f| %>
<%= f.text_field :name, :size => 30 %>
<%= f.text_area :page, :cols => 80, :rows => 10 %>
<tr>
<th align="right">Notifications</th>
<td><%= check_box("user", "notify_daily") %> Daily <%= check_box("user", "notify_weekly") %> Weekly <%= check_box("user", "notify_monthly") %> Monthly</td> <%= check_box("user", "notify_immediate") %> immediate</td>
</tr>
<tr><th></th><td><%= submit_tag "Submit" %></td></tr>
<% end %>