Skip to content

Commit 603240c

Browse files
committed
Fix donations list template
1 parent 244de2b commit 603240c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backend/templates/v1/ngo/donations-view.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@
135135
{% for donation in value %}
136136
<tr>
137137
<td>{{ loop.length - loop.index + 1 }}</td>
138-
<td>{{ donation.first_name + " " + donation.last_name }}</td>
138+
<td>{{ donation.f_name + " " + donation.l_name }}</td>
139139
<td>{{ "Da" if donation.has_signed else "Nu" }}</td>
140140
<td>{{ donation.city }}, <span class="text-muted">{{ donation.county }}</span></td>
141141

0 commit comments

Comments
 (0)