<%= member.name.first.upcase %>

<%= member.name %>

Household Member

<% if member.pays %> contributing <% else %> non-contributing <% end %>
<% if action_name != "show" %>
<%= link_to member, class: "flex-1 inline-flex items-center justify-center px-4 py-2 text-sm font-medium text-blue-600 bg-blue-50 hover:bg-blue-100 rounded-md transition-colors" do %> View <% end %> <%= link_to edit_member_path(member), class: "flex-1 inline-flex items-center justify-center px-4 py-2 text-sm font-medium text-indigo-600 bg-indigo-50 hover:bg-indigo-100 rounded-md transition-colors" do %> Edit <% end %>
<% end %>