Sha256: fd3005817243f7f4b8529b5e5a0eff1ff7c4f2bc5b37615513955bcd331c923f

Contents?: true

Size: 1.03 KB

Versions: 25

Compression:

Stored size: 1.03 KB

Contents

= content_for :menu do
  = icon_to_users 
  = icon_to 'nouveau.png', new_member_adhesion_path(@member), title:'Nouvelle adhésion ou renouvellement'


.champ
  %h3 Historique des adhésions pour #{@member.to_s} 
  
  %table.table.table-striped.table-bordered.table-condensed(cellpadding="0" cellspacing="0" border="0")
    %thead
      %tr
        %th Du
        %th Au
        %th Montant
        %th Reste à payer
        %th Actions
    %tbody
      - @adhesions.each do |adhesion|
        %tr{id:"adhesion_#{adhesion.id}"}
          %td= adhesion.from_date
          %td= adhesion.to_date
          %td= number_to_currency(adhesion.amount, locale: :fr)
          %td= number_to_currency(adhesion.due, locale: :fr)
          %td
            = icon_to 'modifier.png', edit_member_adhesion_path(@member, adhesion)
            = icon_to 'supprimer.png', [@member,adhesion], method: :delete, data: {confirm: 'Etes vous sûr ?'}
            = icon_to('money-plus.png', new_member_payment_path(@member), title:'Ajouter un paiement') unless adhesion.is_paid?

Version data entries

25 entries across 25 versions & 1 rubygems

Version Path
adherent-0.3.13 app/views/adherent/adhesions/index.html.haml
adherent-0.3.12 app/views/adherent/adhesions/index.html.haml
adherent-0.3.11 app/views/adherent/adhesions/index.html.haml
adherent-0.3.10 app/views/adherent/adhesions/index.html.haml
adherent-0.3.9 app/views/adherent/adhesions/index.html.haml
adherent-0.3.7 app/views/adherent/adhesions/index.html.haml
adherent-0.3.6 app/views/adherent/adhesions/index.html.haml
adherent-0.3.5 app/views/adherent/adhesions/index.html.haml
adherent-0.3.4 app/views/adherent/adhesions/index.html.haml
adherent-0.3.3 app/views/adherent/adhesions/index.html.haml
adherent-0.3.2 app/views/adherent/adhesions/index.html.haml
adherent-0.3.1 app/views/adherent/adhesions/index.html.haml
adherent-0.3.0 app/views/adherent/adhesions/index.html.haml
adherent-0.2.9 app/views/adherent/adhesions/index.html.haml
adherent-0.2.8 app/views/adherent/adhesions/index.html.haml
adherent-0.2.7 app/views/adherent/adhesions/index.html.haml
adherent-0.2.6 app/views/adherent/adhesions/index.html.haml
adherent-0.2.5 app/views/adherent/adhesions/index.html.haml
adherent-0.2.4 app/views/adherent/adhesions/index.html.haml
adherent-0.2.3 app/views/adherent/adhesions/index.html.haml