Method: ModelModalHelper#model_modal

Defined in:
app/helpers/model_modal_helper.rb

#model_modal(model, edit_path, options = {}) ⇒ Object



77
78
79
80
81
82
# File 'app/helpers/model_modal_helper.rb', line 77

def model_modal(model, edit_path, options = {})
  (:div, class: 'modal', id: "modal-#{model.id}") do
    concat(model_modal_content(model, options))
    concat(model_modal_footer(model, edit_path))
  end
end