fixes for settign a localisation

This commit is contained in:
2021-11-22 13:43:33 +01:00
parent 69384a84d1
commit 764bb6a21f
6 changed files with 52 additions and 36 deletions

View File

@@ -3,21 +3,19 @@
{% block title %}{{ 'Edit my current location'|trans }}{% endblock %}
{% block content -%}
<h1>{{ 'Edit my current location'|trans }}</h1>
<div class="col-md-10 col-xxl">
<h1>{{ 'Edit my current location'|trans }}</h1>
{{ form_start(edit_form) }}
{{ form_row(edit_form.currentLocation) }}
{{ form_start(edit_form) }}
{{ form_row(edit_form.currentLocation) }}
<ul class="record_actions">
<li class="cancel">
<a href="{{ chill_return_path_or('chill_main_homepage') }}" class="btn btn-cancel">
{{ 'Cancel'|trans }}
</a>
</li>
<li>
{{ form_widget(edit_form.submit, { 'attr': { 'class': 'btn btn-edit' } } ) }}
</li>
</ul>
<ul class="record_actions sticky-form-buttons">
<li>
{{ form_widget(edit_form.submit, { 'attr': { 'class': 'btn btn-edit' } } ) }}
</li>
</ul>
{{ form_end(edit_form) }}
{{ form_end(edit_form) }}
</div>
{% endblock %}