Compare commits

...

2 commits

Author SHA1 Message Date
173dc17a89
doc: update changelog 2026-03-09 10:44:00 +01:00
5ba5e93d14
fix(crud/template): use default route params 2026-03-09 10:43:51 +01:00
2 changed files with 3 additions and 2 deletions

View file

@ -7,6 +7,7 @@
### Fixed ### Fixed
* fix(crud/index): fix row attribute value render * fix(crud/index): fix row attribute value render
* fix(crud/navigation_setting): fix form action * fix(crud/navigation_setting): fix form action
* fix(crud/template): use default route params
## [v1.27.0] - 2025-12-22 ## [v1.27.0] - 2025-12-22
### Fixed ### Fixed

View file

@ -18,7 +18,7 @@
{% block header_actions_before %}{% endblock %} {% block header_actions_before %}{% endblock %}
{% if configuration.action(context, 'back', true) %} {% if configuration.action(context, 'back', true) %}
<a href="{{ path(configuration.pageRoute('index')) }}" class="btn btn-light"> <a href="{{ path(configuration.pageRoute('index'), configuration.pageRouteParams('index')) }}" class="btn btn-light">
<span class="fa fa-list pr-1"></span> <span class="fa fa-list pr-1"></span>
<span class="d-none d-md-inline"> <span class="d-none d-md-inline">
{{ configuration.actionTitle(context, 'back', 'Back to the list')|trans }} {{ configuration.actionTitle(context, 'back', 'Back to the list')|trans }}
@ -27,7 +27,7 @@
{% endif %} {% endif %}
{% if configuration.action(context, 'edit', true, [entity]) %} {% if configuration.action(context, 'edit', true, [entity]) %}
<a href="{{ path(configuration.pageRoute('edit'), {entity: entity.id}) }}" class="btn btn-primary"> <a href="{{ path(configuration.pageRoute('edit'), {entity: entity.id}|merge(configuration.pageRouteParams('edit'))) }}" class="btn btn-primary">
<span class="fa fa-edit pr-1"></span> <span class="fa fa-edit pr-1"></span>
<span class="d-none d-md-inline"> <span class="d-none d-md-inline">