1
0
postdoc/app/views/mailboxes/edit.html.erb
2020-12-06 21:05:11 +01:00

10 lines
392 B
Plaintext

<%= render ModalComponent.new(title: 'Edit Mailbox') do |component| %>
<% component.with(:body) do %>
<%= render('form') %>
<% end %>
<% component.with(:footer) do %>
<button data-action="click->modal#close" class="button">Cancel</button>
<input type="submit" form="edit_mailbox_<%= @mailbox.id %>" class="button button--primary" value="Save Mailbox">
<% end %>
<% end %>