A clean, responsive, and industry-standard Django application that demonstrates how to capture user data across multiple pages using Django Sessions.
- Multi-Step Workflow: Segregates Name, Age, and Profession into logical steps.
- Session Persistence: Uses Django's built-in session framework to store data temporarily without immediate database hits.
- Clean Logic: Organized view functions for better readability and maintenance.
- Responsive UI: (Assuming you used Bootstrap) Optimized for both Desktop and Mobile devices.
- Backend: Python, Django
- Frontend: HTML5, Bootstrap 5
- State Management: Django Sessions
testapp/
βββ views.py # Core logic for handling session data
βββ templates/
β βββ testapp/
β βββ name.html # Step 1: Name Input
β βββ age.html # Step 2: Age Input
β βββ prof.html # Step 3: Profession Input
β βββ result.html # Step 4: Final Summary