A simple web application built with Django that allows you to:
- Create, edit, and delete projects.
- Add tasks to each project.
- Manage task statuses (Pending, In Progress, Completed).
git clone https://github.com/your-username/your-repo.git
cd your-repopython -m venv venv
source venv\Scripts\activatepip install djangopython manage.py migrate
python manage.py runserverNavigate to the provided URL (e.g., http://127.0.0.1:8000/).
- Python 3.x
- Django 4.x
- HTML
- CSS
myapp/: Django app containing views, models, forms, and URLs.templates/: Directory for HTML templates.db.sqlite3: Local SQLite database.