You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

14 lines
486 B

<div class="form-container">
<div class="form-nav-links">
<%= link_to t(:'nodes.list'),
url_for(action: 'tree' , id: @node.parent&.id),
data: { turbo_stream: true },
class: 'back-link' %>
<%= button_to t(:'nodes.destroy'), url_for(action: 'show', id: @node), method: :delete, data: { turbo_confirm: t('ui.are_you_sure') }, tabindex: '-1', class: 'delete-link' %>
</div>
<%= render "form" , node: @node %>
</div>