Added views for QOR admin

This commit is contained in:
Nedim
2023-09-07 13:04:34 +02:00
parent 40c6366608
commit f02e5e49cb
180 changed files with 18556 additions and 2 deletions

View File

@@ -0,0 +1,14 @@
{{$value := (raw_value_of .ResourceValue .Meta)}}
{{if (or (not (is_new_record $value)) (has_create_permission .Meta))}}
<div class="signle-edit qor-field">
<label class="qor-field__label" for="{{.InputId}}">
{{meta_label .Meta}}
</label>
<div class="qor-field__block">
<fieldset id="{{.InputId}}" class="qor-fieldset">
{{render_nested_form $value (edit_sections .Meta.Resource) -1}}
</fieldset>
</div>
</div>
{{end}}