diff --git a/src/app/app-routing-paths.ts b/src/app/app-routing-paths.ts
index e9a6376884..fe2837c6e3 100644
--- a/src/app/app-routing-paths.ts
+++ b/src/app/app-routing-paths.ts
@@ -126,3 +126,9 @@ export function getRequestCopyModulePath() {
}
export const HEALTH_PAGE_PATH = 'health';
+
+export const SUBSCRIPTIONS_MODULE_PATH = 'subscriptions';
+
+export function getSubscriptionsModuleRoute() {
+ return `/${SUBSCRIPTIONS_MODULE_PATH}`;
+}
diff --git a/src/app/app-routing.module.ts b/src/app/app-routing.module.ts
index d426b041ce..9779c2ab27 100644
--- a/src/app/app-routing.module.ts
+++ b/src/app/app-routing.module.ts
@@ -230,6 +230,12 @@ import { ThemedPageErrorComponent } from './page-error/themed-page-error.compone
loadChildren: () => import('./access-control/access-control.module').then((m) => m.AccessControlModule),
canActivate: [GroupAdministratorGuard],
},
+ {
+ path: 'subscriptions',
+ loadChildren: () => import('./subscriptions-page/subscriptions-page-routing.module')
+ .then((m) => m.SubscriptionsPageRoutingModule),
+ canActivate: [AuthenticatedGuard]
+ },
{ path: '**', pathMatch: 'full', component: ThemedPageNotFoundComponent },
]
}
diff --git a/src/app/collection-page/collection-page.component.html b/src/app/collection-page/collection-page.component.html
index 0376b5ddbc..b31ddc50fc 100644
--- a/src/app/collection-page/collection-page.component.html
+++ b/src/app/collection-page/collection-page.component.html
@@ -33,7 +33,10 @@
[title]="'collection.page.news'">
-
{{ 'subscriptions.table.not-available' | translate }}
+{{ 'subscriptions.table.not-available-message' | translate }}
+{{'subscriptions.table.dso' | translate}} | +{{'subscriptions.table.subscription_type' | translate}} | +{{'subscriptions.table.subscription_frequency' | translate}} | +{{'subscriptions.table.action' | translate}} | +
---|---|---|---|