Skills

PROJECT DETAILS


To Do List (Task Tracker)


Create a modern task tracker application with robust token authentication, empowering users to manage their tasks efficiently. This project incorporates Django for the backend, Django Rest Framework for RESTful API development, and Vue.js for a dynamic frontend. User Authentication: Implement token-based authentication to secure user accounts and ensure data privacy. Task Management: Enable users to create, update, and delete tasks, keeping track of their progress and deadlines. RESTful API: Utilize Django Rest Framework to build a scalable and maintainable API for seamless communication between the frontend and backend. Dynamic Frontend: Develop a responsive and user-friendly frontend using Vue.js, providing an interactive task management experience. CORS Integration: Configure Cross-Origin Resource Sharing (CORS) to allow secure communication between the frontend and backend on different origins.

Framework: Django

To Do List (Task Tracker)

Technology Stack: Backend: Django / Django / Rest Framework / Djoser / PostgreSQL Frontend: Vue.js / Axios Authentication: Token-based authentication Additional Libraries: Crispy Forms / Font Awesome / Bootstrap 5

About Team

Company / Institution: Freelance

Developers Team: Marco Antonio Parra



Skills

Project Images


Skills

EndPoint & Routes


Available EndPoints

EndPoint Description URL
todo/ This Django project serves as a Task Manager, allowing users to organize and manage their tasks. It includes features for creating, updating, and deleting tasks. The project utilizes Django, Crispy Forms for form styling, and JavaScript for dynamic task handling. Create a new task by filling out a form with title, description, priority, and effort. The form is styled using Crispy Forms to enhance the user experience. The JavaScript code handles dynamic actions for creating tasks without requiring a page refresh.Update an existing task by navigating to the task details page and editing the relevant information. The dynamic form submission is handled using JavaScript, providing a seamless user experience. Crispy Forms ensures a clean and stylish form layout. Delete a task with a single click using the provided delete button. The JavaScript code sends an asynchronous request to the server, and the task is removed dynamically without requiring a page reload. Users can manage their tasks effortlessly.
todo/dashboard/ Retrieve task-related data for the dashboard. This endpoint provides a comprehensive overview of tasks, including their status, due dates, and other relevant information. It serves as a central source of data for the task dashboard UI in your application. Get a list of tasks with details such as task name, description, and status. Obtain a summary of task statuses (e.g., completed, pending, overdue). If authenticated, the endpoint tailors the response to the authenticated user, ensuring privacy and security.
todo/serializer_tasks Retrieving tasks assigned or created by the current authenticated user using Django Rest Framework to generate a JSON response. This endpoint ensures a seamless and structured user experience by providing detailed information about each task in a JSON format. This endpoint aims to enhance user interaction and facilitate efficient data consumption.