Module: Tuttle::ApplicationHelper
- Defined in:
- app/helpers/tuttle/application_helper.rb
Instance Method Summary collapse
Instance Method Details
#truth_label(is_true, true_label = 'true', false_label = 'false') ⇒ Object
4 5 6 |
# File 'app/helpers/tuttle/application_helper.rb', line 4 def truth_label(is_true, true_label='true', false_label='false') "<span class='label label-#{ is_true ? 'success':'danger'}'>#{ is_true ? true_label : false_label}</span>".html_safe end |