diff --git a/src/components.d.ts b/src/components.d.ts
index ed8f66b6f7890ff5f0694b637d89b0f37c24afa0..a72989e4c7f6399a6f5a7e23dabde38f2ac5bfb0 100644
--- a/src/components.d.ts
+++ b/src/components.d.ts
@@ -254,6 +254,7 @@ export namespace Components {
     courseEnrollmentLink?: string;
     courseLinkLabel?: string;
     courseName?: string;
+    courseOrganisation?: string;
     courseStartDate?: string;
     courseStudyFormat?: string;
     courseTags: TagValue[] | string;
@@ -1540,6 +1541,7 @@ declare namespace LocalJSX {
     courseEnrollmentLink?: string;
     courseLinkLabel?: string;
     courseName?: string;
+    courseOrganisation?: string;
     courseStartDate?: string;
     courseStudyFormat?: string;
     courseTags?: TagValue[] | string;
diff --git a/src/components/courses/hy-content-list-item/hy-content-list-item.tsx b/src/components/courses/hy-content-list-item/hy-content-list-item.tsx
index 3df481f1694ed8601f4e8f6f907b32b3a9729507..5ccfb496454fefe7a5ccc6fffd41d5f53f218d12 100644
--- a/src/components/courses/hy-content-list-item/hy-content-list-item.tsx
+++ b/src/components/courses/hy-content-list-item/hy-content-list-item.tsx
@@ -24,6 +24,7 @@ export class HyContentLstItem {
   @Prop() courseStartDate?: string;
   @Prop() courseEndDate?: string;
   @Prop() courseStudyFormat?: string;
+  @Prop() courseOrganisation?: string;
   @Prop() courseEnrollmentLink?: string;
   @Prop() courseTeachingLanguage?: string;
   @Prop() courseLinkLabel?: string;
@@ -77,9 +78,20 @@ export class HyContentLstItem {
           <div class="hy-content-list-item--metadata--item hy-content-list-item--metadata--item--first">
             <span>{this._dateValue}</span>
           </div>
-          <div class="hy-content-list-item--metadata--item hy-content-list-item--metadata--item--last">
-            <span>{this.courseStudyFormat}</span>
-          </div>
+          {this.courseOrganisation
+            ? [
+                <div class="hy-content-list-item--metadata--item">
+                  <span>{this.courseStudyFormat}</span>
+                </div>,
+                <div class="hy-content-list-item--metadata--item hy-content-list-item--metadata--item--last">
+                  <span>{this.courseOrganisation}</span>
+                </div>,
+              ]
+            : [
+                <div class="hy-content-list-item--metadata--item hy-content-list-item--metadata--item--last">
+                  <span>{this.courseStudyFormat}</span>
+                </div>,
+              ]}
         </div>
         {this._courseTags && (
           <div class="hy-content-list-item--tags">
diff --git a/src/components/courses/hy-content-list-item/readme.md b/src/components/courses/hy-content-list-item/readme.md
index 18e033955b9fd02e8ce1755b0176279a16c76f5c..c9603f4aada0715797cbb1a1fff0d87157914a31 100644
--- a/src/components/courses/hy-content-list-item/readme.md
+++ b/src/components/courses/hy-content-list-item/readme.md
@@ -12,6 +12,7 @@
 | `courseEnrollmentLink`   | `course-enrollment-link`   |             | `string`                                        | `undefined`              |
 | `courseLinkLabel`        | `course-link-label`        |             | `string`                                        | `undefined`              |
 | `courseName`             | `course-name`              |             | `string`                                        | `undefined`              |
+| `courseOrganisation`     | `course-organisation`      |             | `string`                                        | `undefined`              |
 | `courseStartDate`        | `course-start-date`        |             | `string`                                        | `undefined`              |
 | `courseStudyFormat`      | `course-study-format`      |             | `string`                                        | `undefined`              |
 | `courseTags`             | `course-tags`              |             | `TagValue[] \| string`                          | `undefined`              |
diff --git a/src/components/courses/hy-content-list/hy-content-list.tsx b/src/components/courses/hy-content-list/hy-content-list.tsx
index 10cf3f2af018eb9e37d0d3609b10ebfa7325a984..c2f0551c1b8a3a0d533db5c590e5c06fb6083670 100644
--- a/src/components/courses/hy-content-list/hy-content-list.tsx
+++ b/src/components/courses/hy-content-list/hy-content-list.tsx
@@ -47,6 +47,7 @@ export class HyContentList implements ComponentInterface {
         }
         let courseTagsJSON = JSON.stringify(courseTags);
 
+        // Course realisations
         if (courseItem['realisations']) {
           let realisations = JSON.parse(JSON.stringify(courseItem['realisations']));
           for (let realisationProperty in realisations) {
@@ -59,6 +60,7 @@ export class HyContentList implements ComponentInterface {
             let courseEndDate = realizationItem['endDate'];
             let courseEnrollmentLink = realizationItem['enrolmentLink'];
             let courseTeachingLanguage = realizationItem['teachingLanguage'];
+            let courseOrganisation = realizationItem['organisation'];
 
             const contentListItemClassAttributes = ['item', this.variant].join(' ');
 
@@ -74,6 +76,7 @@ export class HyContentList implements ComponentInterface {
                 course-start-date={courseStartDate}
                 course-end-date={courseEndDate}
                 course-study-format={courseStudyFormat}
+                course-organisation={courseOrganisation}
                 course-enrollment-link={courseEnrollmentLink}
                 course-teaching-language={courseTeachingLanguage}
                 course-link-label={this.linkLabel}