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

UX/UI : Lorsque je consulte une candidature depuis l’onglet “candidat” d’une fiche candidat, je devrais revenir sur ce même onglet #5310

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

dejafait
Copy link
Contributor

@dejafait dejafait commented Dec 23, 2024

https://www.notion.so/plateforme-inclusion/Lorsque-je-consulte-une-candidature-depuis-l-onglet-candidat-d-une-fiche-candidat-je-devrais-reve-126e8fa5c35b80dd87bbdf105a7856cb

🤔 Pourquoi ?

Les deux onglets de la page Candidat (voir screenshots ci-dessous) n'ayant pas d'URL propre, si on clique sur un lien puis qu'on revient en arrière, on revient systématiquement sur l'onglet par défaut (informations générales) et pas sur l'onglet secondaire (Candidatures) même si on était dessus avant de cliquer sur le lien.

🍰 Comment ?

On donne à chaque onglet son URL propre en séparant l'unique route actuelle en deux routes. Notez qu'on conserve une unique vue mais qu'on sépare son gabarit en deux.

Chaque route pointe vers son gabarit directement dans le urls.py. Pour cela j'ai d'abord tenté un path("details/<uuid:public_id>", views.JobSeekerDetailView.as_view(), {"template_name": "job_seekers_views/details.html"}, name="details") mais je n'ai pas réussi à le faire fonctionner en aval. Au final j'ai utilisé un simple path("details/<uuid:public_id>", views.JobSeekerDetailView.as_view(template_name="job_seekers_views/details.html"), name="details") qui fonctionne très bien.

💻 Captures d'écran

image image

@dejafait dejafait changed the title Lorsque je consulte une candidature depuis l’onglet “candidat” d’une fiche candidat, je devrais revenir sur ce meme onglet UX/UI : Lorsque je consulte une candidature depuis l’onglet “candidat” d’une fiche candidat, je devrais revenir sur ce meme onglet Dec 23, 2024
@dejafait dejafait marked this pull request as draft December 23, 2024 17:29
@dejafait dejafait added the bug label Dec 23, 2024
@dejafait dejafait force-pushed the dejafait/fix_navbar branch 2 times, most recently from eae5b00 to 87cce32 Compare December 23, 2024 17:32
@dejafait dejafait self-assigned this Dec 23, 2024
@dejafait dejafait added modifié and removed bug labels Dec 23, 2024
@dejafait dejafait force-pushed the dejafait/fix_navbar branch 4 times, most recently from a1ee86e to 292920f Compare December 26, 2024 09:31
@dejafait dejafait force-pushed the dejafait/fix_navbar branch from 292920f to 5865cec Compare December 26, 2024 09:49
@dejafait dejafait changed the title UX/UI : Lorsque je consulte une candidature depuis l’onglet “candidat” d’une fiche candidat, je devrais revenir sur ce meme onglet UX/UI : Lorsque je consulte une candidature depuis l’onglet “candidat” d’une fiche candidat, je devrais revenir sur ce même onglet Dec 26, 2024
@dejafait dejafait marked this pull request as ready for review December 26, 2024 10:24
@dejafait dejafait requested a review from leo-naeka December 26, 2024 10:25
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant