Fix #18: Show round directions in juror voting interface#405
Fix #18: Show round directions in juror voting interface#405QuantumPrity wants to merge 5 commits intohatnote:masterfrom
Conversation
…irections-voting # Conflicts: # frontend/src/components/Round/RoundEdit.vue # frontend/src/components/Round/RoundNew.vue
|
To test this locally without OAuth, you can use the project's debug login mode:
See |
|
This PR appears to have picked up changes from your other open PRs (#401, #402) — likely a branching issue where this branch was created from another feature branch rather than from master. For future PRs: branch from master and keep each PR scoped to a single issue. This makes review easier and keeps git history clean. For the specific PR: please clean it up, and add a screen recording of the new feature in use. That will greatly help evaluation. |
|
Hi @Igelauff, I have opened a new, clean Pull Request at #493 that addresses the branching issues and keeps the git history scoped strictly to the Vote.vue changes. I am closing this PR to keep the repository organized. All further updates and the screen recording will be posted on #493. Thank you for the guidance on keeping the PRs focused! |

Fixes #18
Problem
Jurors had no way to see round directions/instructions while voting.
The directions were being saved by coordinators but never displayed
in the voting interface.
Solution
Added a directions display section at the top of the voting interface
in Vote.vue. The directions are already sent by the backend in
juror_endpoints.py so no backend changes were needed.
Changes
frontend/src/components/Vote/Vote.vue— Added directions displayfrontend/src/i18n/en.json— Added translation keyScreenshots
(Before)

(After)

Note: Unable to provide live app screenshots as the app requires
Wikipedia OAuth setup locally. The before screenshot shows the
code without directions display, and the after screenshot shows
the updated code with directions display in Vote.vue.