Skip to content

Commit

Permalink
Fix donations list template
Browse files Browse the repository at this point in the history
  • Loading branch information
tudoramariei committed Nov 1, 2024
1 parent 244de2b commit 603240c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/templates/v1/ngo/donations-view.html
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@
{% for donation in value %}
<tr>
<td>{{ loop.length - loop.index + 1 }}</td>
<td>{{ donation.first_name + " " + donation.last_name }}</td>
<td>{{ donation.f_name + " " + donation.l_name }}</td>
<td>{{ "Da" if donation.has_signed else "Nu" }}</td>
<td>{{ donation.city }}, <span class="text-muted">{{ donation.county }}</span></td>

Expand Down

0 comments on commit 603240c

Please sign in to comment.