design.html.haml 1.08 KB
= form_for @user, url: profile_update_path, remote: true, method: :put do |f|
  %fieldset
    %legend Application theme
    .themes_opts
      = label_tag do
        .prev.default
        = f.radio_button :theme_id, 1
        Default

      = label_tag do
        .prev.classic
        = f.radio_button :theme_id, 2
        Classic

      = label_tag do
        .prev.modern
        = f.radio_button :theme_id, 3
        Modern

      = label_tag do
        .prev.gray
        = f.radio_button :theme_id, 4
        SlateGray

      = label_tag do
        .prev.violet
        = f.radio_button :theme_id, 5
        Violet
    %br
    .clearfix

  %fieldset
    %legend Code review
    .code_highlight_opts
      = label_tag do
        .prev
          = image_tag "white.png"
        = f.radio_button :dark_scheme, false
        White code preview
      = label_tag do
        .prev
          = image_tag "dark.png"
        = f.radio_button :dark_scheme, true
        Dark code preview

:javascript
  $(function(){
    $(".edit_user input").bind("click", function() {
      $(".edit_user").submit();
    });
  })