mirror of
https://github.com/getgrav/grav-plugin-admin.git
synced 2026-02-25 16:11:30 +01:00
9 lines
307 B
Twig
9 lines
307 B
Twig
{% extends "forms/field.html.twig" %}
|
|
|
|
{% block field %}
|
|
<div class="form-columns grid pure-g">
|
|
{% set cols = field.fields|length %}
|
|
{% include 'forms/default/fields.html.twig' with {name: field.name|parent_field, fields: field.fields, fallback_field: 'column', cols: cols} %}
|
|
</div>
|
|
{% endblock %}
|