16 lines
473 B
Cheetah
16 lines
473 B
Cheetah
<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>
|