mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-22 02:04:24 +00:00
24 lines
552 B
Twig
24 lines
552 B
Twig
<div class="col-md col-xxl">
|
|
|
|
<h1>{{ 'Add a person resource'|trans }}</h1>
|
|
|
|
{{ form_start(form, {'attr' : {'id' : 'create-form'}}) }}
|
|
|
|
{{ form_row(form.kind) }}
|
|
|
|
{{ form_row(form.linkedEntity) }}
|
|
|
|
{{ form_row(form.comment) }}
|
|
|
|
<ul class="record_actions sticky-form-buttons">
|
|
<li class="dropdown">
|
|
<a class="btn btn-create"
|
|
href="#" role="button" id="newPersonResource">
|
|
{{ 'Add a person resource'|trans }}
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
|
|
{{ form_end(form) }}
|
|
|
|
</div> |