Skip to content

Commit

Permalink
form is not a template tag..
Browse files Browse the repository at this point in the history
  • Loading branch information
SebastienReuiller committed Feb 6, 2025
1 parent eae007c commit 1448f4d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lemarche/templates/dashboard/siae_edit_info.html
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ <h3 class="fr-callout__title fr-text--sm">
<div class="fr-col-12 fr-col-lg-8">
{% include "includes/forms/_dsfr_formset.html" with formset_title="Labels et certifications" formset=label_formset %}
<div id="labels_old-formset-empty-form" class="fr-hidden">
<div class="formset-row-labels_old formset">{% form label_formset.empty_form %}</div>
<div class="formset-row-labels_old formset">{{ label_formset.empty_form }}</div>
</div>
<button id="labels_old-formset-add-more"
type="button"
Expand Down
2 changes: 1 addition & 1 deletion lemarche/templates/dashboard/siae_edit_offer.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ <h3 class="fr-mt-3w">Vos prestations commerciales</h3>
{% endfor %}
</div>
<div id="{{ offer_formset.prefix }}-formset-empty-form" class="fr-hidden">
<div class="formset-row-{{ offer_formset.prefix }} formset">{% form offer_formset.empty_form %}</div>
<div class="formset-row-{{ offer_formset.prefix }} formset">{{ offer_formset.empty_form }}</div>
</div>
<button id="{{ offer_formset.prefix }}-formset-add-more"
type="button"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ <h1 class="h1 mb-3 mb-lg-5">
<div class="fr-grid-row">
<div class="fr-col-12 fr-col-sm-6">
<form method="get" action="">
{% form filter_form %}
{{ filter_form }}
</form>
</div>
</div>
Expand Down

0 comments on commit 1448f4d

Please sign in to comment.