gitlabhq/app/views/profile/design.html.haml

38 lines
959 B
Plaintext
Raw Normal View History

2012-03-01 20:23:50 +01:00
= form_for @user, :url => profile_update_path, :remote => true, :method => :put do |f|
2012-04-11 23:54:07 +02:00
%div
2012-04-10 07:51:08 +02:00
%h3 Application theme
%hr
.clearfix
= label_tag do
2012-04-10 07:51:08 +02:00
= f.radio_button :theme_id, 1
Default
2012-03-01 20:23:50 +01:00
= label_tag do
2012-04-10 07:51:08 +02:00
= f.radio_button :theme_id, 2
Classic
%br
2012-03-01 20:23:50 +01:00
%h3 Code review
%hr
.row
2012-04-10 07:51:08 +02:00
%label.span3{:for => "user_dark_scheme_false"}
.thumbnail
= image_tag "white.png", :width => 260, :class => "styled_image"
.caption
%h5
= f.radio_button :dark_scheme, false
White code preview
%label.span3{:for => "user_dark_scheme_true"}
.thumbnail
= image_tag "dark.png", :width => 260, :class => "styled_image"
.caption
%h5
= f.radio_button :dark_scheme, true
Dark code preview
:javascript
$(function(){
2012-03-01 20:23:50 +01:00
$(".edit_user input").bind("click", function() {
$(".edit_user").submit();
});
})