Sha256: a0df880e55d67b222a8d89b0671b3679613a286f5aaf7ee8c0202ae2d05533e7
Contents?: true
Size: 1.53 KB
Versions: 2
Compression:
Stored size: 1.53 KB
Contents
<%= error_messages_for 'user' %> <!--[form:user]--> <p> <label for="user_login"><%= _("Login")%>:</label><br /> <%= text_field 'user', 'login' %> </p> <p> <label for="user_login"><%= _("Display Name")%>:</label><br/> <%= text_field 'user', 'name' %> </p> <p> <label for="user_email"><%= _("Email")%>:</label> <small>(this will be shown publically if supplied)</small><br/> <%= text_field 'user', 'email' %> </p> <p> <label for="user_jabber"><%= _("Jabber")%>:</label> <small>(this can be blank)</small><br/> <%= text_field 'user', 'jabber' %> </p> <p> <label for="user_password"><%= _("Password")%>:</label><br /> <%= password_field_tag 'user[password]', '', :id => 'user_password', :size => 30 %> </p> <p> <label for="user_password"><%= _("Password confirmation")%>:</label><br /> <%= password_field 'user', 'password_confirmation' %> </p> <p> <label for="user_notify_via_email"><%= _("Send notification messages via email")%>?</label><br /> <%= check_box 'user', 'notify_via_email' %> </p> <p> <label for="user_notify_via_jabber"><%= _("Send notification messages via jabber")%>?</label><br /> <%= check_box 'user', 'notify_via_jabber' %> </p> <p> <label for="user_notify_on_new_articles"><%= _("Send notification messages when new articles are posted")%>?</label><br /> <%= check_box 'user', 'notify_on_new_articles' %> </p> <p> <label for="user_notify_on_comments"><%= _("Send notification messages when comments are posted")%>?</label><br /> <%= check_box 'user', 'notify_on_comments' %> </p> <!--[eoform:user]-->
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
typo-4.1.1 | app/views/admin/users/_form.rhtml |
typo-4.1 | app/views/admin/users/_form.rhtml |