F2SManager is a powerful yet simple Django-based productivity app that helps users manage their daily tasks with features like filtering, sorting, and deadline tracking.
- Create, edit, and delete tasks
- Set task priority: Low, Medium, High
- Add start and end dates
- Filter by priority and status (Pending, Completed)
- Sort by created date, start date, or end date
- Responsive UI with sidebar and grid layout
- Planned: Email reminders & deadline alerts
- Backend: Django
- Frontend: HTML, CSS, JavaScript
- Database: PostgreSQL
- Upcoming: Celery + Redis (for background task reminders)
git clone https://github.com/yourusername/F2SManager.git
cd F2SManager
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
pip install -r requirements.txt
python manage.py migrate
python manage.py runserver