33 lines
2.0 KiB
Plaintext
33 lines
2.0 KiB
Plaintext
<div id="c-users">
|
|
<div id="a-edit">
|
|
<h1>Settings</h1>
|
|
|
|
<%= simple_form_for @user do |f| %>
|
|
<fieldset>
|
|
<%= f.input :email, :required => Danbooru.config.enable_email_verification?, :hint => "Used for messages and for password resets", :as => :email %>
|
|
<%= f.input :time_zone, :include_blank => false %>
|
|
<%= f.input :receive_email_notifications, :as => :select, :include_blank => false %>
|
|
<%= f.input :comment_threshold, :hint => "Comments below this score will be hidden by default" %>
|
|
<%= f.input :always_resize_images, :as => :select, :include_blank => false %>
|
|
<%= f.input :default_image_size, :hint => "Large is #{Danbooru.config.large_image_width} pixels wide, and original is whatever the original image is", :collection => %w(large original), :include_blank => false %>
|
|
<%= f.input :enable_post_navigation, :as => :select, :include_blank => false, :hint => "When searching, do you want to navigate from post to post?" %>
|
|
<%= f.input :new_post_navigation_layout, :as => :select, :label => "Pool links", :include_blank => false, :collection => [["Bottom", "true"], ["Top", "false"]], :hint => "When browsing pools, where do you want the navigation links to be placed?" %>
|
|
<%= f.input :favorite_tags, :hint => "A list of whitespace delimited tags that show up in your profile", :input_html => {:size => "40x5"} %>
|
|
<%= f.input :blacklisted_tags, :hint => "A list of newline delimited tags that you never want to see", :input_html => {:size => "40x5"} %>
|
|
</fieldset>
|
|
|
|
<fieldset>
|
|
<%= f.input :password, :hint => "Leave blank if you don't want to change your password", :label => "New password", :input_html => {:autocomplete => "off"} %>
|
|
<%= f.input :old_password, :as => :password, :input_html => {:autocomplete => "off"} %>
|
|
</fieldset>
|
|
|
|
<%= f.button :submit, "Submit" %>
|
|
<% end %>
|
|
</div>
|
|
</div>
|
|
|
|
<% content_for(:page_title) do %>
|
|
Settings - <%= Danbooru.config.app_name %>
|
|
<% end %>
|
|
|
|
<%= render "secondary_links" %> |