Compare commits
3 commits
005dddcea2
...
ac3781f01c
| Author | SHA1 | Date | |
|---|---|---|---|
|
ac3781f01c |
|||
|
173dc17a89 |
|||
|
5ba5e93d14 |
2 changed files with 3 additions and 2 deletions
|
|
@ -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
|
||||||
|
|
|
||||||
|
|
@ -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">
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue