diff --git a/src/app/profile/dashboard/orientations-table/orientations-table.component.html b/src/app/profile/dashboard/orientations-table/orientations-table.component.html
index 36c80d63d06785ae18cdded79fe48cc6e7b88533..6e3d126cd9000d5b391ef7c745c1215c413e8d4e 100644
--- a/src/app/profile/dashboard/orientations-table/orientations-table.component.html
+++ b/src/app/profile/dashboard/orientations-table/orientations-table.component.html
@@ -16,6 +16,7 @@
     [attr.aria-label]="
       'Ouvrir l orientation de ' + orientation.personOriented.name + ' ' + orientation.personOriented.surname
     "
+    (onclick)="orientationSeen()"
   >
     <div>
       <div class="name">{{ orientation.personOriented.name }} {{ orientation.personOriented.surname | uppercase }}</div>
diff --git a/src/app/profile/dashboard/orientations-table/orientations-table.component.ts b/src/app/profile/dashboard/orientations-table/orientations-table.component.ts
index 251f71f84a201dd1bd3231bc609526bc0bbd5604..7818cb22075cdf397970c28bb55d1335420f4ed5 100644
--- a/src/app/profile/dashboard/orientations-table/orientations-table.component.ts
+++ b/src/app/profile/dashboard/orientations-table/orientations-table.component.ts
@@ -11,4 +11,9 @@ export class OrientationsTableComponent {
 
   @Input() orientations: any[];
   @Input() type?: string;
+
+  public orientationSeen(): void {
+    // TODO : changer le status de l'orientation => A traiter (acknowledged)
+    console.log('coucou');
+  }
 }