Initial import
This commit is contained in:
54
app/views/user/edit.html.erb
Normal file
54
app/views/user/edit.html.erb
Normal file
@@ -0,0 +1,54 @@
|
||||
<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"> </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" %>
|
||||
|
||||
<% end %><br/><br/>
|
||||
</p>
|
||||
|
||||
Reference in New Issue
Block a user