Use correct button labels in instance forms
All checks were successful
Tests / test (push) Successful in 30s

closes #242
This commit is contained in:
Tobias Kunze 2025-12-09 13:27:45 +01:00
parent 5d19a7a853
commit a2c99efc69
2 changed files with 4 additions and 2 deletions

View file

@ -22,7 +22,8 @@
{% translate "Oops! Something went wrong with the service form generation. Please try again later." %}
</div>
{% else %}
{% include "includes/tabbed_fieldset_form.html" with form=custom_form expert_form=form %}
{% translate "Update" as update_label %}
{% include "includes/tabbed_fieldset_form.html" with form=custom_form expert_form=form form_submit_label=update_label %}
{% endif %}
</div>
</div>

View file

@ -26,7 +26,8 @@
{% translate "Oops! Something went wrong with the service form generation. Please try again later." %}
</div>
{% else %}
{% include "includes/tabbed_fieldset_form.html" with form=custom_service_form expert_form=service_form %}
{% translate "Create" as create_label %}
{% include "includes/tabbed_fieldset_form.html" with form=custom_service_form expert_form=service_form form_submit_label=create_label %}
{% endif %}
</div>
</div>