Add basic donation records #18

Merged
raucao merged 6 commits from feature/donation_records into master 2020-12-21 14:46:51 +00:00
Showing only changes of commit f3d6e29e4e - Show all commits

View File

@@ -29,7 +29,7 @@
<thead>
<tr>
<th>URL</th>
<th>Used at</th>
<th>Accepted</th>
<th>Invited user</th>
</tr>
</thead>
@@ -37,7 +37,7 @@
<% @invitations_used.each do |invitation| %>
<tr>
<td><%= invitation_url(invitation.token) %></td>
<td><%= invitation.used_at %></td>
<td><%= invitation.used_at.strftime("%Y-%m-%d") %></td>
<td><%= User.find(invitation.invited_user_id).address %></td>
</tr>
<% end %>