Skip to content

Commit

Permalink
fix: disable form front validate for now
Browse files Browse the repository at this point in the history
  • Loading branch information
mutantsan committed Sep 7, 2023
1 parent ccf3211 commit 619eb63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ckanext/tour/templates/tour/tour_edit.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
{% endblock breadcrumb_content %}

{% block ap_content %}
<form action="{{ h.url_for('tour.edit', tour_id=tour.id) }}" method="POST" enctype="multipart/form-data">
<form action="{{ h.url_for('tour.edit', tour_id=tour.id) }}" method="POST" enctype="multipart/form-data" novalidate>
{% call form.input("title", label=_("Tour title"), value=tour.title, attrs={'required': 1, 'class': 'form-control'}) %}
{{ form.info(_("A tour title to explain what is it for")) }}
{% endcall %}
Expand Down

0 comments on commit 619eb63

Please sign in to comment.