Sha256: 07c83387f83b31b379d944b4a488df84d683dbc3440ecdf02da5752433dfae46
Contents?: true
Size: 1.54 KB
Versions: 5
Compression:
Stored size: 1.54 KB
Contents
<%= error_messages_for 'user' %> <!--[form:user]--> <fieldset> <ul> <li> <label class="float" for="user_login"><%= _("Login")%>:</label> <%= text_field 'user', 'login' %> </li> <li> <label class="float" for="user_profile"><%= _("Profile")%>:</label> <%= select("user", "profile_id", @profiles.collect {|p| [ p.nicename, p.id ] }, { :include_blank => true }) %> </li> <li> <label class="float" for="user_login"><%= _("Display Name")%>:</label> <%= text_field 'user', 'name' %> </li> <li> <label class="float" for="user_email"><%= _("Email")%>:</label> <%= text_field 'user', 'email' %> <small>(this will be shown publically if supplied)</small> </li> <li> <label class="float" for="user_password"><%= _("Password")%>:</label> <%= password_field_tag 'user[password]', '', :id => 'user_password', :size => 30 %> </li> <li> <label class="float" for="user_password"><%= _("Password confirmation")%>:</label> <%= password_field 'user', 'password_confirmation' %> </li> <li> <label class="float" for="user_notify_via_email"><%= _("Send notification messages via email")%>?</label> <%= check_box 'user', 'notify_via_email' %> </li> <li> <label class="float" for="user_notify_on_new_articles"><%= _("Send notification messages when new articles are posted")%>?</label> <%= check_box 'user', 'notify_on_new_articles' %> </li> <li> <label class="float" for="user_notify_on_comments"><%= _("Send notification messages when comments are posted")%>?</label> <%= check_box 'user', 'notify_on_comments' %> </li> </ul> </fieldset> <!--[eoform:user]-->
Version data entries
5 entries across 5 versions & 1 rubygems