Method: Adherent::ApplicationHelper#list_imputations
- Defined in:
- app/helpers/adherent/application_helper.rb
#list_imputations(payment) ⇒ Object
41 42 43 44 45 46 47 48 49 |
# File 'app/helpers/adherent/application_helper.rb', line 41 def list_imputations(payment) content_tag(:ul) do payment.reglements.map do |r| content_tag(:li) do imputation_with_actions(payment, r) end end.join.html_safe end end |