You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

55 lines
1.4 KiB

<h4 class="title"><%= App.title %></h4>
<h1 class="title">Editar Preferências</h1>
<p>
<%= error_messages_for 'user' %><br/>
<%= form_tag :action => 'update', :id => @user do %>
<label for="user_name">Nome</label><br/>
<%= text_field "user", "name", :size => 20 %><br/>
<label for="user_email">Email</label><br/>
<%= text_field "user", "email", :size => 20 %><br/><br/>
<label for="user_password">Senha</label><br/>
<%= password_field "user", "password", {:value => "", :size => 20, :id => 'password'} %><br/>
<label for="user_password_confirmation">Confirmação de Senha</label><br/>
<%= password_field "user", "password_confirmation", {:value => "", :size => 20} %><br/>
<div id="passmeter">&nbsp;</div><br/>
<label for="user_pref_color">Cor de Preferência:</label><br />
<%= select_tag("user[pref_color]", options_for_select( {
"Preto" => 0,
"Verde (Claro)" => 1,
"Azul (Claro)" => 2,
"Lilás" => 3,
"Vermelho/Cinza" => 4,
"Verde-limão" => 5,
"Azul (Padrão)" => 6,
"Vermelho" => 7,
"Azul/Laranja" => 8,
"Verde/Vermelho" => 9,
"Pink" => 10,
"Roxo" => 11,
"Vinho" => 12,
}.sort)) %><br/><br/>
<label for="user_courses">Disciplinas matriculadas:</label><br/>
<% Course.find(:all).each do |course| %>
<%= check_box_tag("user[course_ids][]", course.id, @user.courses.include?(course)) %>
<%= h(course.full_name) %><br/>
<% end %>
<br/><br/>
<%= submit_tag "Editar", :accesskey => 'e' %>
<% end %><br/><br/>
</p>