mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-10-02 03:19:43 +00:00
hand replace * push- by offset- * no-gutter by g-0 add breakpoints md- and sm-
35 lines
911 B
Twig
35 lines
911 B
Twig
{% extends "@ChillMain/layout.html.twig" %}
|
|
|
|
{% block title 'Create third party'|trans %}
|
|
|
|
{% block content %}
|
|
<div class="col-10 centered">
|
|
<h1>{{ 'Create third party'|trans }}</h1>
|
|
|
|
{{ form_start(form) }}
|
|
{{ form_row(form.name) }}
|
|
{{ form_row(form.type) }}
|
|
{{ form_row(form.telephone) }}
|
|
{{ form_row(form.email) }}
|
|
{{ form_row(form.address) }}
|
|
|
|
{{ form_row(form.active) }}
|
|
{{ form_row(form.centers) }}
|
|
{{ form_row(form.comment) }}
|
|
|
|
|
|
<ul class="record_actions">
|
|
<li class="cancel">
|
|
<a href="{{ chill_return_path_or('chill_3party_3party_index') }}" class="btn btn-cancel">
|
|
{{ 'Back to the list'|trans }}
|
|
</a>
|
|
</li>
|
|
<li>
|
|
{{ form_widget(form.submit, {'label': 'Create', 'attr': {'class': 'btn btn-new' }}) }}
|
|
</li>
|
|
</ul>
|
|
|
|
{{ form_end(form) }}
|
|
</div>
|
|
{% endblock %}
|