feat(org-src): replace flow components with content components and add list views

Add new content components for unit, division, and installation with list views, entry forms, and validation schemas. Replace Flow*List components with Content*List components in org-src pages. Includes pagination, search functionality, and CRUD operations for each entity type.
This commit is contained in:
Khafid Prayoga
2025-09-08 11:09:35 +07:00
parent 97199cee3b
commit b0938a2eb6
9 changed files with 3 additions and 3 deletions
@@ -34,7 +34,7 @@ const canRead = true
<template>
<div>
<div v-if="canRead">
<FlowDivisionList />
<ContentDivisionList />
</div>
<Error v-else :status-code="403" />
</div>
@@ -34,7 +34,7 @@ const canRead = true
<template>
<div>
<div v-if="canRead">
<FlowInstallationList />
<ContentInstallationList />
</div>
<Error v-else :status-code="403" />
</div>
+1 -1
View File
@@ -34,7 +34,7 @@ const canRead = true
<template>
<div>
<div v-if="canRead">
<FlowUnitList />
<ContentUnitList />
</div>
<Error v-else :status-code="403" />
</div>