Add a generic helper app to display settings menus similar to how Foundry does by default, but without the category selector

This commit is contained in:
Oliver 2025-12-07 17:37:30 -07:00
parent 523d9c1da2
commit 28d0105397
3 changed files with 200 additions and 0 deletions

View file

@ -0,0 +1,8 @@
<footer class="form-footer">
<button
type="submit"
>
<i class="fa-solid fa-floppy-disk" inert aria-hidden="true"></i>
{{localize "SETTINGS.Save"}}
</button>
</footer>

View file

@ -0,0 +1,7 @@
<section class="setting-list scrollable">
{{#each settings as |setting|}}
{{formGroup setting.field value=setting.value rootId=@root.meta.idp localize=true }}
{{else}}
{{localize "OFT.apps.no-settings-to-display"}}
{{/each}}
</section>