diff --git a/alfa-client/apps/admin/src/app/app.component.html b/alfa-client/apps/admin/src/app/app.component.html
index 69e4b50b55c887010dbdea890b1f62c3b275478f..77e7b3580421ec84729cf5700aa95a6c832f7faf 100644
--- a/alfa-client/apps/admin/src/app/app.component.html
+++ b/alfa-client/apps/admin/src/app/app.component.html
@@ -18,9 +18,9 @@
   <div class="flex h-screen w-full justify-center overflow-y-auto">
     <ods-navbar data-test-id="navigation">
       <ng-container *ngIf="apiRoot | hasLink: ApiRootLinkRel.CONFIGURATION">
-        <!--        <ods-nav-item caption="Organisationseinheiten" to="/organisationseinheiten">-->
-        <!--          <ods-orga-unit-icon icon />-->
-        <!--        </ods-nav-item>-->
+        <ods-nav-item caption="Organisationseinheiten" to="/organisationseinheiten">
+          <ods-orga-unit-icon icon />
+        </ods-nav-item>
         <ods-nav-item caption="Benutzer & Rollen" to="/benutzer_und_rollen">
           <ods-users-icon class="stroke-text" icon />
         </ods-nav-item>
diff --git a/alfa-client/apps/admin/src/app/app.routes.ts b/alfa-client/apps/admin/src/app/app.routes.ts
index 9594ce3ee2736d7a990774c0b57db4f75e3a7582..e880d84e0c7dfad1f26a506cf820dfa770d41e33 100644
--- a/alfa-client/apps/admin/src/app/app.routes.ts
+++ b/alfa-client/apps/admin/src/app/app.routes.ts
@@ -1,4 +1,5 @@
 import { Route } from '@angular/router';
+import { OrganisationseinheitPageComponent } from '../pages/organisationseinheit/organisationseinheit-page/organisationseinheit-page.component';
 import { PostfachPageComponent } from '../pages/postfach/postfach-page/postfach-page.component';
 import { UserRolesPageComponent } from '../pages/users-roles/user-roles-page/user-roles-page.component';
 
@@ -18,9 +19,9 @@ export const appRoutes: Route[] = [
     component: UserRolesPageComponent,
     title: 'Admin | Benutzer & Rollen',
   },
-  // {
-  //   path: 'organisationseinheiten',
-  //   component: OrganisationseinheitPageComponent,
-  //   title: 'Admin | Organisationseinheiten',
-  // },
+  {
+    path: 'organisationseinheiten',
+    component: OrganisationseinheitPageComponent,
+    title: 'Admin | Organisationseinheiten',
+  },
 ];