aboutsummaryrefslogtreecommitdiff
path: root/app/views/resources/_edit.html.erb
blob: 55c59f6b89a81fd1572af42d8c6ce322dbbf7a69 (plain)
1
2
3
4
5
6
<h3>Edit <%= @resource.presence.feature['properties']['name'] || 'new resource' %></h3>
<h2>Context: <%= current_agent %></h2>

<%= form_with model: [current_agent,@resource], url: controller.action_name == 'new' ? agent_resources_path(agent: current_agent) : resource_path(@resource) do |f| %>
    <%= render partial: 'form', locals: { resource: resource, f: f } %>
<% end %>