diff --git a/orga/app/components/organization-learner/activity/participation-row.gjs b/orga/app/components/organization-learner/activity/participation-row.gjs
new file mode 100644
index 00000000000..8bb92ec35a3
--- /dev/null
+++ b/orga/app/components/organization-learner/activity/participation-row.gjs
@@ -0,0 +1,67 @@
+import { array } from '@ember/helper';
+import { on } from '@ember/modifier';
+import { action } from '@ember/object';
+import { LinkTo } from '@ember/routing';
+import { service } from '@ember/service';
+import Component from '@glimmer/component';
+import { t } from 'ember-intl';
+
+import CampaignType from '../../campaign/detail/type';
+import Date from '../../ui/date';
+import ParticipationStatus from '../../ui/participation-status';
+
+export default class ParticipationRow extends Component {
+ @service router;
+
+ get routeName() {
+ return this.args.participation.campaignType === 'ASSESSMENT'
+ ? 'authenticated.campaigns.participant-assessment'
+ : 'authenticated.campaigns.participant-profile';
+ }
+
+ get labels() {
+ return {
+ ASSESSMENT: 'components.campaign.type.information.ASSESSMENT',
+ PROFILES_COLLECTION: 'components.campaign.type.information.PROFILES_COLLECTION',
+ };
+ }
+
+ @action
+ goToParticipationDetail(event) {
+ event.preventDefault();
+ this.router.transitionTo(
+ this.routeName,
+ this.args.participation.campaignId,
+ this.args.participation.lastCampaignParticipationId,
+ );
+ }
+
+
+
+
+
+}
diff --git a/orga/app/components/organization-learner/activity/participation-row.hbs b/orga/app/components/organization-learner/activity/participation-row.hbs
deleted file mode 100644
index 026610a59b1..00000000000
--- a/orga/app/components/organization-learner/activity/participation-row.hbs
+++ /dev/null
@@ -1,26 +0,0 @@
-
+
+
+
+
+
+
+
+
+
+
+ {{@participation.participationCount}}
+
+