diff --git a/public/index.html b/public/index.html
index 2740982..fcfbabb 100644
--- a/public/index.html
+++ b/public/index.html
@@ -564,6 +564,22 @@
dateStr = date.toLocaleDateString('fr-FR', { year: 'numeric', month: 'short', day: 'numeric' });
}
+ let rewardName = '';
+ if (contributor.latest_project_order &&
+ contributor.latest_project_order.items &&
+ contributor.latest_project_order.items.length > 0) {
+
+ const items = contributor.latest_project_order.items;
+
+ items.forEach(item => {
+ if (item.reward &&
+ item.reward.title &&
+ item.reward.title.fr) {
+ rewardName += item.reward.title.fr + " & "
+ }
+ });
+ }
+
const avatarUrl = contributor.avatar || 'https://s3-eu-west-1.amazonaws.com/com.ulule.assets/site/build/img/avatars/avatar-blue.png';
html += `
@@ -574,7 +590,7 @@