Я хочу, чтобы администратор мог изменить логическое состояние: coach с link_to на «true», когда оно «false», и на «false», когда «true». Как удалить пользователя link_to.
просмотр / пользователи / индекс:
<%= will_paginate %>
<ul class="users">
<%= render @users %>
</ul>
<%= will_paginate %>
просмотров / пользователи / _user:
<li>
<%= link_to image_tag(user.photo.url(:thumb)), user %>
<%= link_to user.fname, user %>
<%= link_to user.lname, user %>
<%= user.email %>
<%= user.coach %>
<% if current_user.admin? && !current_user?(user) %>
<% if user.coach == false %>
| <%= link_to "Passer coach", user, coach: => :true, method: :edit,
data: { confirm: "Êtes vous sûr ?" } %>
<% else %>
| <%= link_to "Retirer des coachs", user, coach: => :false, method: :edit,
data: { confirm: "Êtes vous sûr ?" } %>
<% end %>
<% end %>
<% if current_user.admin? && !current_user?(user) %>
| <%= link_to "Supprimer", user, method: :delete,
data: { confirm: "Êtes vous sûr ?" } %>
<% end %>
controllers / users_controller:
def edit
@user = User.find(params[:id])
end
def update
if @user.update_attributes(user_params)
flash[:success] = "Profil mis à jour"
redirect_to @user
else
render 'edit'
end
end
def index
@users = User.where(activated: true).paginate(page: params[:page])
end
private
def user_params
params.require(:user).permit(:fname, :lname, :email, :password,
:password_confirmation, :photo, :birthdate, :mother_tongue, :coach, spoken_language_ids:[])
end
Route.rb:
resources :users
get 'signup' => 'users#new'
post '/signup' => 'users#create'
resources :user do
post :coach
end
Фактическая ошибка:
Не найдено ни одного маршрута [POST] "/ users / 1"
Не знаю, как я могу проложить маршрут.
Я много чего пробовал, но ничего не работает, я новичок в dev и Ruby и очень нуждаюсь в вашей помощи, большое спасибо.
Это мои пользователи / редактировать вид:
<% provide(:title, "Paramètres") %>
<h1>Mettre à jour votre profil</h1>
<div class="row">
<div class="col-md-6 col-md-offset-3">
<%= form_for (@user), :html => { :multipart => true } do |f| %>
<%= render 'shared/error_messages' %>
<%= f.label :photo %>
<%= f.file_field :photo, class: 'form-control' %>
<%= f.label :Prénom %>
<%= f.text_field :fname, class: 'form-control' %>
<%= f.label :Nom %>
<%= f.text_field :lname, class: 'form-control' %>
<%= f.label :Date_de_naissance %>
<%= f.date_select :birthdate, class: 'form-control' %>
<%= f.label :Langue_maternelle %>
<%= f.text_field :mother_tongue, class: 'form-control' %>
<%= f.label :Autres_langues_parlées %>
<%= f.collection_check_boxes :spoken_language_ids, SpokenLanguage.all, :id, :name do |b| %>
<div class="collection-check-box">
<%= b.check_box %>
<%= b.label %>
<% end %>
<%= f.label :Email %>
<%= f.email_field :email, class: 'form-control' %>
<%= f.label :Mot_de_passe %>
<%= f.password_field :password, class: 'form-control' %>
<%= f.label :Confirmation_mot_de_passe, "Confirmation" %>
<%= f.password_field :password_confirmation, class: 'form-control' %>
<%= f.submit "Enregistrer les changements", class: "btn btn-primary" %>
<% end %>
Но эта часть доступна для всех пользователей, в то время как Switch Coach доступен только для администратора