templates/app/company/localization.html.twig line 1
{% extends 'app/setting/index.html.twig' %} {% block title %} {% trans %}
Localisation {% endtrans %} {% endblock %} {% block settingview %}
<div class="card" data-controller="settingserawdha">
<div class="card-body">
<div class="row">
<div class="col-12">
<div class="card">
<div class="card-header align-items-center d-flex">
<h4 class="card-title mb-0 flex-grow-1 font-size-20">
<i class="mdi mdi-translate me-2"></i>
{% trans %} Localisation {% endtrans %}
</h4>
<div class="flex-shrink-0"></div>
</div>
<div class="card-body">
{{ form_start(form, {'attr': {'class': 'form theme-form'}}) }}
<div class="mb-3 row">
<label class="col-sm-3 col-form-label">
{{ form_label(form.date_format) }}
</label>
<div class="col-sm-8">
{{ form_widget(form.date_format) }}
<div class="text-danger" style="margin-top: 0.25rem">
<small>{{ form_errors(form.date_format) }}</small>
</div>
<div class="text-info" style="margin-top: 0.25rem">
<small>{{ form_help(form.date_format) }}</small>
</div>
</div>
</div>
<div class="mb-3 row">
<label class="col-sm-3 col-form-label">
{{ form_label(form.languege) }}
</label>
<div class="col-sm-8">
{{ form_widget(form.languege) }}
<div class="text-danger" style="margin-top: 0.25rem">
<small>{{ form_errors(form.languege) }}</small>
</div>
<div class="text-info" style="margin-top: 0.25rem">
<small>{{ form_help(form.languege) }}</small>
</div>
</div>
</div>
<div class="mb-3 row">
<label class="col-sm-3 col-form-label">
{{ form_label(form.currencie) }}
</label>
<div class="col-sm-8">
{{ form_widget(form.currencie) }}
<div class="text-danger" style="margin-top: 0.25rem">
<small>{{ form_errors(form.currencie) }}</small>
</div>
<div class="text-info" style="margin-top: 0.25rem">
<small>{{ form_help(form.currencie) }}</small>
</div>
</div>
</div>
<div class="mb-3 row">
<label class="col-sm-3 col-form-label">
{{ form_label(form.time_zone) }}
</label>
<div class="col-sm-8">
{{ form_widget(form.time_zone) }}
<div class="text-danger" style="margin-top: 0.25rem">
<small>{{ form_errors(form.time_zone) }}</small>
</div>
<div class="text-info" style="margin-top: 0.25rem">
<small>{{ form_help(form.time_zone) }}</small>
</div>
</div>
</div>
<div class="text-end pt-4">
<button type="submit" class="btn btn-primary">
{% trans %} Mise à jour {% endtrans %}
</button>
</div>
{{ form_end(form) }}
</div>
</div>
</div>
</div>
</div>
</div>
{% endblock %}