Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Candidat: correction du paramètre fictif pour le filtre du nom de candidat dans la vue liste #4682

Merged
merged 1 commit into from
Sep 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion itou/www/job_seekers_views/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ class FilterForm(forms.Form):
label="Nom",
widget=Select2Widget(
attrs={
"data-placeholder": "Nom du salarié",
"data-placeholder": "Nom du candidat",
}
),
)
Expand Down
2 changes: 1 addition & 1 deletion tests/www/job_seekers_views/__snapshots__/test_list.ambr
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@

<div class="flex-column flex-md-row mt-3 mt-md-0">
<form hx-get="/job-seekers/list" hx-indicator="#job-seekers-section" hx-push-url="true" hx-swap="outerHTML" hx-target="#job-seekers-section" hx-trigger="change delay:.5s">
<div class="w-lg-400px"><label class="visually-hidden" for="id_job_seeker">Nom</label><select class="form-select django-select2" data-allow-clear="true" data-minimum-input-length="0" data-placeholder="Nom du salarié" data-theme="bootstrap-5" id="id_job_seeker" lang="fr" name="job_seeker">
<div class="w-lg-400px"><label class="visually-hidden" for="id_job_seeker">Nom</label><select class="form-select django-select2" data-allow-clear="true" data-minimum-input-length="0" data-placeholder="Nom du candidat" data-theme="bootstrap-5" id="id_job_seeker" lang="fr" name="job_seeker">
<option selected="" value=""></option>

</select></div>
Expand Down