module BulmaFormRails::MessageBoxHelpers
This Ruby on Rails Helper module allows easy and efficient flash and validation error box rendering.
Public Instance Methods
bulma_message_box()
click to toggle source
Render a standard flash messages box. Automatically included with bulma_validation_box
and bulma_index_header
output.
# File lib/bulma_form_rails/message_box_helpers.rb, line 13 def bulma_message_box render partial: 'bulma_form_rails/message_box' end
bulma_validation_box(model)
click to toggle source
Render a standard model validation messages box. Automatically calls bulma_message_box
.
-
model
- the model object
# File lib/bulma_form_rails/message_box_helpers.rb, line 19 def bulma_validation_box(model) render partial: 'bulma_form_rails/validation_box', locals: {model: model} end