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)
  (:ul) do
    payment.reglements.map do |r|
      (:li) do
        imputation_with_actions(payment, r)
      end
    end.join.html_safe
  end
end