Initial Upload

This commit is contained in:
Matt Batchelder
2025-12-02 10:32:59 -05:00
commit 05ce0da296
2240 changed files with 467811 additions and 0 deletions

8
views/form-base.twig Normal file
View File

@@ -0,0 +1,8 @@
{
"title": {% apply json_encode|raw %}{% block formTitle %}{% endblock %}{% endapply %},
"html": {% apply json_encode|raw %}{% block formHtml %}{% endblock %}{% endapply %},
"buttons": {% apply json_encode|raw %}{% block formButtons %}{% endblock %}{% endapply %},
"fieldActions": {% apply json_encode|raw %}{% block formFieldActions %}{% endblock %}{% endapply %},
"callBack": {% apply json_encode|raw %}{% block callBack %}{% endblock %}{% endapply %},
"extra": {% block extra %}[]{% endblock %}
}