<%= notice %>

<%= t('contributions.delete.title') %>

<%= t('contributions.delete.confirmation_message') %>

<%= t('members.attributes.display_name') %><%= @contribution.member.display_name %>
<%= t('members.attributes.email') %><%= @contribution.member.email %>
<%= t('members.attributes.category') %><%= @contribution.member.category %>
<%= t('members.attributes.identification_number') %><%= @contribution.member.identification_number %>
<%= t('members.attributes.address') %><%= simple_format @contribution.member.address %>
<%= t('members.attributes.joined_on') %><%= @contribution.member.joined_on %>
<%= t('members.attributes.expires_on') %><%= @contribution.member.expires_on %>
<%= t('members.attributes.status') %><%= @contribution.member.status %>
<%= form_with model: @contribution, method: :delete do |form| %>
<%= form.submit t('contributions.delete.actions.submit') %>
<%= link_to t('contributions.delete.actions.go_back'), members_path %>
<% end %>