Compare commits
No commits in common. "ac3781f01c349f1ecea95647d9d53b6858edafb5" and "005dddcea2083cf65791687600a7a3abfc340a7f" have entirely different histories.
ac3781f01c
...
005dddcea2
2 changed files with 2 additions and 3 deletions
|
|
@ -7,7 +7,6 @@
|
|||
### Fixed
|
||||
* fix(crud/index): fix row attribute value render
|
||||
* fix(crud/navigation_setting): fix form action
|
||||
* fix(crud/template): use default route params
|
||||
|
||||
## [v1.27.0] - 2025-12-22
|
||||
### Fixed
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@
|
|||
{% block header_actions_before %}{% endblock %}
|
||||
|
||||
{% if configuration.action(context, 'back', true) %}
|
||||
<a href="{{ path(configuration.pageRoute('index'), configuration.pageRouteParams('index')) }}" class="btn btn-light">
|
||||
<a href="{{ path(configuration.pageRoute('index')) }}" class="btn btn-light">
|
||||
<span class="fa fa-list pr-1"></span>
|
||||
<span class="d-none d-md-inline">
|
||||
{{ configuration.actionTitle(context, 'back', 'Back to the list')|trans }}
|
||||
|
|
@ -27,7 +27,7 @@
|
|||
{% endif %}
|
||||
|
||||
{% if configuration.action(context, 'edit', true, [entity]) %}
|
||||
<a href="{{ path(configuration.pageRoute('edit'), {entity: entity.id}|merge(configuration.pageRouteParams('edit'))) }}" class="btn btn-primary">
|
||||
<a href="{{ path(configuration.pageRoute('edit'), {entity: entity.id}) }}" class="btn btn-primary">
|
||||
<span class="fa fa-edit pr-1"></span>
|
||||
|
||||
<span class="d-none d-md-inline">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue