Skip to content

Commit

Permalink
Close form before starting the other one.
Browse files Browse the repository at this point in the history
We never closed the first form (when there are no files) as we enter the
first branch but the second branch had the closing tag for the form.
Solved by moving that tag outside of the branches.
  • Loading branch information
vmcj committed Jul 26, 2024
1 parent 4fb25aa commit 9d43515
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webapp/templates/jury/executable.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -135,8 +135,8 @@
{{ form_widget(form) }}
</div>
</div>
{{ form_end(form) }}
{% endif %}
{{ form_end(form) }}

{% if is_granted('ROLE_ADMIN') %}
<hr>
Expand Down

0 comments on commit 9d43515

Please sign in to comment.