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,15 @@
<div class="qor-form-section clearfix" data-section-title="{{.Title}}">
{{if .Title}}
<label class="qor-field__label qor-form-section-title">
{{t (printf "%v.form.sections.%v" .Section.Resource.ToParam .Title) .Title}}
</label>
{{end}}
<div {{if .Title}}class="qor-fieldset"{{end}}>
{{range .Rows}}
<div class="qor-form-section-rows qor-section-columns-{{.Length}} clearfix">
{{.ColumnsHTML}}
</div>
{{end}}
</div>
</div>