diff options
Diffstat (limited to 'app/views/welcome')
-rw-r--r-- | app/views/welcome/authenticate.html.erb | 2 | ||||
-rw-r--r-- | app/views/welcome/index.html.erb | 5 |
2 files changed, 2 insertions, 5 deletions
diff --git a/app/views/welcome/authenticate.html.erb b/app/views/welcome/authenticate.html.erb index 548101b..ba9f1c5 100644 --- a/app/views/welcome/authenticate.html.erb +++ b/app/views/welcome/authenticate.html.erb @@ -5,7 +5,7 @@ <p>Your Agents: <ul> <% @current_user&.agencies&.each do |a| %> - <li><%= a.name %> (<%= a.roles %>)</li> + <li><%= a.name %></li> <% end %> </ul> </p> diff --git a/app/views/welcome/index.html.erb b/app/views/welcome/index.html.erb index 2a154ae..d9fd0f6 100644 --- a/app/views/welcome/index.html.erb +++ b/app/views/welcome/index.html.erb @@ -8,14 +8,11 @@ <button data-action="taxonomy#toggle" data-target="taxonomy.toggle"></button> </div> <div data-target="taxonomy.filter"></div> + <div data-target="taxonomy.layers"></div> </div> <% end %> <% content_for :debug do %> <% if current_user.present? %> - <p>Premier élément de la liste:</p> - <% res = @resources.first %> - <p><%= res.feature["properties"]["name"] %></p> - <p><%= res.feature["geometry"]["coordinates"] %></p> <% end %><%# ensure it does not break when we don't have a record... %> <% end %> |