diff --git a/app/views/contributions/index.html.erb b/app/views/contributions/index.html.erb
index 5e6db90..073adff 100644
--- a/app/views/contributions/index.html.erb
+++ b/app/views/contributions/index.html.erb
@@ -13,7 +13,13 @@
<% @contributions.each do |contribution| %>
<%= contribution.payment_on %> |
- <%= contribution.member.number %>. <%= contribution.member.display_name %> |
+
+ <% if contribution.member %>
+ <%= contribution.member.number %>. <%= contribution.member.display_name %>
+ <% else %>
+ ---
+ <% end %>
+ |
<%= contribution.eurocents %> |
<%= contribution.payment_method %> |
|