diff options
Diffstat (limited to 'app/views/application/_current_agent_switch.html.erb')
-rw-r--r-- | app/views/application/_current_agent_switch.html.erb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/app/views/application/_current_agent_switch.html.erb b/app/views/application/_current_agent_switch.html.erb new file mode 100644 index 0000000..f19f26b --- /dev/null +++ b/app/views/application/_current_agent_switch.html.erb @@ -0,0 +1,4 @@ +<%= form_for current_agent, url: '/my/current_agent', method: :patch do |f| %> + <%= f.select(:id, options_for_select(current_user.agents.map { |a| [a.name, a.id] }, selected: current_agent.id), title: "Sélectionner l'agent en cours") %> + <%= f.submit(" » ", title: "Activer cet Agent") %> +<% end %> |