fix #477: use vpd targets in policy dropdowns

This commit is contained in:
devmrko
2026-06-26 05:50:25 +09:00
parent e806a92e98
commit f0782a10d9
3 changed files with 7 additions and 12 deletions

View File

@@ -132,9 +132,9 @@
<label>
VPD 적용 대상 TABLE/VIEW
<select class="form-select" name="objectKey" required>
<option th:each="object : ${objects}"
th:value="${object.owner() + '.' + object.objectName()}"
th:text="${object.displayName()}"></option>
<option th:each="target : ${vpdTargets}"
th:value="${target.objectDisplayName()}"
th:text="${target.objectDisplayName() + ' / ' + target.objectType() + (target.vpdApplied() ? ' / VPD 적용됨' : ' / 미적용')}"></option>
</select>
</label>
<label>

View File

@@ -86,9 +86,9 @@
<label>
VPD 적용 대상 TABLE/VIEW
<select class="form-select" name="objectKey" required>
<option th:each="object : ${objects}"
th:value="${object.owner() + '.' + object.objectName()}"
th:text="${object.displayName()}"></option>
<option th:each="target : ${vpdTargets}"
th:value="${target.objectDisplayName()}"
th:text="${target.objectDisplayName() + ' / ' + target.objectType() + (target.vpdApplied() ? ' / VPD 적용됨' : ' / 미적용')}"></option>
</select>
</label>
<label>