{% extends 'base.html.twig' %}
{% block title %}Ajouter nouvelle ville{% endblock %}
{% block stylesheets %}
{{ parent() }}
{% endblock %}
{% block javascripts %}
{{ parent() }}
{% endblock %}
{% block content %}
{% include 'shared/layout/_content-header.html.twig' with {
'item_lien': [
{
'label': 'Liste des Villes',
'path': path('app_city_index', {'countryId': country_id})
}
]
} %}
{% include 'city/_form.html.twig' with {
'path': path('app_city_new', {'countryId': country_id}),
'path_list': path('app_city_index', {'countryId': country_id}),
'label_btn': 'Ajouter',
'title': 'Ajouter ville',
'class_alert': 'success'
} %}
{% endblock %}