Build multi-page dashboard shell with routed pages and active sidebar navigation - #14
Merged
Merged
Conversation
There was a problem hiding this comment.
Copilot wasn't able to review any files in this pull request.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Kr1491
marked this pull request as ready for review
June 3, 2026 10:04
Kr1491
self-requested a review
June 3, 2026 10:04
Kr1491
approved these changes
Jun 3, 2026
Kr1491
left a comment
Owner
There was a problem hiding this comment.
Dashboard implemented successfully
Copilot
AI
changed the title
[WIP] Build multi-page dashboard layout with sidebar navigation
Build multi-page dashboard shell with routed pages and active sidebar navigation
Jun 3, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The app previously rendered all workflows in a single page with no route-level navigation. This change introduces a dashboard shell with persistent sidebar navigation and route-specific content pages for dashboard, upload, processing, validation, documents, and export.
Layout and navigation foundation
templates/index.htmlinto a reusable base layout (sidebar + top header + content slot).request.path.Route decomposition in Flask
/page rendering with redirect to/dashboard./dashboard/upload/processing/validation/documents/exportPage templates split by concern
dashboard.html,upload.html,processing.html,validation.html,documents.html,export.html) extending the base layout./upload-multiple-pdfs,/file-status) while moving UI into route-specific views.Export surface
/export/downloadto stream current classification data as CSV from existing status storage.Docs and repo hygiene
__pycache__/to.gitignore.