{"id":24782097,"url":"https://github.com/talha3117/to-do-webapp","last_synced_at":"2026-04-25T16:34:57.440Z","repository":{"id":274753378,"uuid":"923958348","full_name":"talha3117/To-do-Webapp","owner":"talha3117","description":"To-Do List Website:   A simple Django web app where users can register, log in, manage tasks (add, edit, mark as done, delete), and filter tasks by their status (All, Completed, Not Completed). The app has a responsive design for desktop and mobile use.","archived":false,"fork":false,"pushed_at":"2025-01-29T06:40:34.000Z","size":35,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-29T07:23:48.047Z","etag":null,"topics":["crud-filtering","full-stack","python","responsive-design","sqlite","task-management","to-do-list","user-authentication","web-development"],"latest_commit_sha":null,"homepage":"https://github.com/talha3117/To-do-Webapp/tree/main","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/talha3117.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-01-29T06:23:45.000Z","updated_at":"2025-01-29T06:45:34.000Z","dependencies_parsed_at":"2025-01-29T07:23:52.289Z","dependency_job_id":"858bc2a7-934b-44fa-baad-36bc043fcb19","html_url":"https://github.com/talha3117/To-do-Webapp","commit_stats":null,"previous_names":["talha3117/to-do-webapp"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/talha3117%2FTo-do-Webapp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/talha3117%2FTo-do-Webapp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/talha3117%2FTo-do-Webapp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/talha3117%2FTo-do-Webapp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/talha3117","download_url":"https://codeload.github.com/talha3117/To-do-Webapp/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245214192,"owners_count":20578761,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["crud-filtering","full-stack","python","responsive-design","sqlite","task-management","to-do-list","user-authentication","web-development"],"created_at":"2025-01-29T11:16:01.884Z","updated_at":"2026-04-25T16:34:57.395Z","avatar_url":"https://github.com/talha3117.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"Here’s the updated README with the revised directory structure:\n\n---\n\n# To-Do List Website\n\nThis is a simple, yet fully functional To-Do List website built using Django. The website allows users to register, log in, and manage tasks by creating, editing, marking tasks as done, and deleting them. Additionally, users can view a history of completed tasks and filter tasks by their status (completed or not completed).\n\n## Features:\n- **User Authentication**: Users can register, log in, and log out.\n- **Task Management**: Users can add, edit, mark as done, and delete tasks.\n- **Task History**: View a history of tasks, with completed tasks marked accordingly.\n- **Filtering**: Filter tasks by their status: All, Completed, or Not Completed.\n- **Responsive Design**: The application is responsive, making it accessible on both desktop and mobile devices.\n\n## Technologies Used:\n- **Django**: The web framework used for backend logic and routing.\n- **SQLite**: The default database engine used to store tasks and user information.\n- **HTML/CSS**: The markup and styling technologies used to build and design the pages.\n- **Bootstrap** (optional, but may be added for additional styling): Used for responsive design and layout (if desired).\n- **JavaScript (optional)**: Can be used for front-end features such as form validation or dynamic interactions.\n\n## Installation Instructions:\n\n1. **Clone the Repository**:\n   ```bash\n   git clone https://github.com/your-username/todolist-website.git\n   cd todolist-website\n   ```\n\n2. **Create and Activate a Virtual Environment**:\n   It is recommended to create a virtual environment to isolate your dependencies.\n   ```bash\n   python3 -m venv venv\n   source venv/bin/activate  # On Windows, use `venv\\Scripts\\activate`\n   ```\n\n3. **Install Dependencies**:\n   Install the required Python packages using pip:\n   ```bash\n   pip install -r requirements.txt\n   ```\n\n4. **Set Up the Database**:\n   Run migrations to set up the database schema.\n   ```bash\n   python manage.py migrate\n   ```\n\n5. **Create a Superuser (Optional)**:\n   If you want to create an admin account to access the Django admin panel:\n   ```bash\n   python manage.py createsuperuser\n   ```\n\n6. **Start the Development Server**:\n   Run the server locally to test the project.\n   ```bash\n   python manage.py runserver\n   ```\n\n   Access the site by visiting [http://127.0.0.1:8000](http://127.0.0.1:8000).\n\n## Directory Structure:\n```\ntodo_project/\n│\n├── tasks/                \n│   ├── migrations/       \n│   │   ├── admin.py      \n│   ├── apps.py          \n│   ├── forms.py         \n│   ├── models.py        \n│   ├── tests.py         \n│   ├── urls.py          \n│   └── views.py         \n│\n├── templates/\n│   ├── registration/       \n│   │   └── login.html         \n│   ├── login.html      \n│   ├── register.html   \n│   ├── task_list.html  \n│   ├── add_task.html   \n│   └── edit_task.html   \n├── todo_list/         \n│   ├── __init__.py\n│   ├── settings.py       \n│   ├── urls.py           \n│   ├── wsgi.py           \n│   └── asgi.py           \n│\n├── db.sqlite3            \n│\n├── manage.py             \n```\n\n### Templates:\n- **add_task.html**: Form for adding new tasks to the to-do list.\n- **edit_task.html**: Form for editing existing tasks.\n- **home.html**: Home page with login and registration options.\n- **login.html**: Login page for existing users.\n- **register.html**: Registration page for new users.\n- **task_list.html**: Displays the list of tasks with options to edit, delete, or mark as done.\n\n### Static Files:\n- All styles are applied inline within the HTML files, ensuring there are no external CSS files.\n\n## Usage:\n\n- **Homepage**: Upon visiting the homepage, users can either log in or register a new account.\n- **Task List**: Once logged in, users can view their tasks, filter by status, and interact with the task list (add, edit, delete, mark as done).\n- **Adding a Task**: On the \"Add Task\" page, users can create a new task and assign it a title.\n- **Editing a Task**: Users can edit the title of existing tasks.\n- **Marking Tasks as Done**: Users can mark tasks as completed, which will update the task’s status.\n- **Task History**: Users can view all tasks (including completed and not completed) through filtering options.\n\n## Screenshots:\n### 1. Home Page\n![Home Page](screenshots/home.png)\n\n### 2. Login Page\n![Login Page](screenshots/login.png)\n\n### 3. Task List Page\n![Task List Page](screenshots/task_list.png)\n\n### 4. Add Task Page\n![Add Task Page](screenshots/add_task.png)\n\n## Notes:\n- This project uses **SQLite** as the database, which is suitable for development and testing. For production environments, it is recommended to configure a more robust database system like PostgreSQL or MySQL.\n- The website is designed to be **responsive**, so it should work well on both desktop and mobile devices.\n- You may choose to extend the functionality by adding features such as deadlines, task prioritization, or email notifications.\n\n## Contributing:\nIf you wish to contribute to this project, feel free to fork the repository and submit a pull request with your changes.\n\n## License:\nThis project is open-source and available under the MIT License.\n\n---\n\nLet me know if you need any further changes!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftalha3117%2Fto-do-webapp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftalha3117%2Fto-do-webapp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftalha3117%2Fto-do-webapp/lists"}