From bf26abcf5233e88597b270f6e54010adf08a3fc7 Mon Sep 17 00:00:00 2001 From: hellekin Date: Thu, 29 Oct 2020 23:18:11 +0100 Subject: Add agent selector widget and taxonomy navigator (WIP) --- app/views/application/_current_agent_link.html.erb | 1 + app/views/application/_current_agent_switch.html.erb | 4 ++++ app/views/application/_taxonomy_nav.html.erb | 6 ++++++ 3 files changed, 11 insertions(+) create mode 100644 app/views/application/_current_agent_link.html.erb create mode 100644 app/views/application/_current_agent_switch.html.erb create mode 100644 app/views/application/_taxonomy_nav.html.erb (limited to 'app') diff --git a/app/views/application/_current_agent_link.html.erb b/app/views/application/_current_agent_link.html.erb new file mode 100644 index 0000000..58bf5fb --- /dev/null +++ b/app/views/application/_current_agent_link.html.erb @@ -0,0 +1 @@ +<%= render partial: 'current_agent_switch' %> 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 %> diff --git a/app/views/application/_taxonomy_nav.html.erb b/app/views/application/_taxonomy_nav.html.erb new file mode 100644 index 0000000..2203665 --- /dev/null +++ b/app/views/application/_taxonomy_nav.html.erb @@ -0,0 +1,6 @@ +<% out = [] +clazo.each do |c| %> + <%= tag.span(taxo.name) %> » + <%= link_to(c.section.category.name, c.section.category) %> » + <%= link_to(c.section.name, c.section) %> » +<% end %> -- cgit v1.2.3