<%= notice %>

<%= t('members.show.title') %>

<%= t('members.attributes.display_name') %><%= @member.display_name %>
<%= t('members.attributes.email') %><%= @member.email %>
<%= t('members.attributes.category') %><%= @member.category %>
<%= t('members.attributes.identification_number') %><%= @member.identification_number %>
<%= t('members.attributes.address') %><%= simple_format @member.address %>
<%= t('members.attributes.joined_on') %><%= @member.joined_on %>
<%= t('members.attributes.expires_on') %><%= @member.expires_on %>
<%= t('members.attributes.status') %><%= @member.status %>
<%= link_to t('members.show.actions.edit'), edit_member_path(@member) %>

<%= t('members.show.contribution_history') %>

<% @member.contributions.each do |contribution| %> <% end %>
Payment date Payment method Payment reference Amount
<%= contribution.payment_on %> <%= contribution.payment_method %> <%= contribution.payment_reference %> €<%= contribution.eurocents %> <%= link_to t('members.show.actions.edit_contribution'), edit_contribution_path(contribution) %>