From 1b19b8645571697cddfdd2361aa01df7d172af75 Mon Sep 17 00:00:00 2001
From: Marc-Antoine Manningham <marc-antoine.m@outlook.com>
Date: Fri, 22 Nov 2024 15:49:56 -0500
Subject: [PATCH] fix: disclaimer link

---
 client/src/components/forms/ParticipantForm.tsx | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/client/src/components/forms/ParticipantForm.tsx b/client/src/components/forms/ParticipantForm.tsx
index 2c06894..789f68a 100644
--- a/client/src/components/forms/ParticipantForm.tsx
+++ b/client/src/components/forms/ParticipantForm.tsx
@@ -66,6 +66,7 @@ function ParticipantRow(props: ParticipantRowProps) {
                 {localStorage.getItem("role") === "organizer" && (
                     <td class="p-2 text-center">{p.university}</td>
                 )}
+                <td class="">{p.contain_cv ? "✔️" : "❌"}</td>
                 <td class="flex flex-row gap-4 p-2 text-center">
                     {localStorage.getItem("role") !== "volunteer" && (
                         <button
@@ -191,6 +192,9 @@ export default function ParticipantForm() {
                                     Université
                                 </th>
                             )}
+                            <th class="border-b border-gray-300 p-2 text-center">
+                                Infos données
+                            </th>
                             <th class="border-b border-gray-300 p-2 text-center">
                                 Actions
                             </th>
-- 
GitLab