Django Mini Task — Task Manager
Django Mini Task — Task Manager
Objective:
Build a basic Task Manager system using pure Django (no Django REST Framework). The
system should allow a logged-in user to create and view their own tasks.
🔹 1. Model
Create a Task model with the following fields:
🔹 2. Views
Create two views, both protected using @login_required:
🔹 3. Templates
Use simple, clean templates:
🔹 4. URLs
Define the following URL patterns:
URL View
🔹 5. Rules
● Protect views using @login_required.
● No edit/delete required.
● Task Model
● Basic Templates
● Working URLs