1
0
postdoc/app/views/mailboxes/edit.html.erb

10 lines
392 B
Plaintext
Raw Normal View History

2020-12-06 20:49:03 +01:00
<%= 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 %>