foodsoft/app/views/invites/_modal_form.html.haml
wvengen 507651f5ba Move small close button to helper.
Workaround for show order deface override nuking attributes of the close button.
2015-04-10 18:58:51 +02:00

12 lines
403 B
Text

= simple_form_for @invite, remote: true do |form|
.modal-header
= close_button :modal
%h3= t '.title'
.modal-body
= t('.body', group: @invite.group.name).html_safe
= form.hidden_field :user_id
= form.hidden_field :group_id
= form.input :email
.modal-footer
= link_to t('ui.close'), '#', class: 'btn', data: {dismiss: 'modal'}
= form.submit class: 'btn btn-primary'