https://github.com/anuran-roy/gdc-wd202-l7-milestone
This is the level 7 milestone project for the WD202 GDC Course
https://github.com/anuran-roy/gdc-wd202-l7-milestone
Last synced: 2 days ago
JSON representation
This is the level 7 milestone project for the WD202 GDC Course
- Host: GitHub
- URL: https://github.com/anuran-roy/gdc-wd202-l7-milestone
- Owner: anuran-roy
- Created: 2022-02-11T21:49:19.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-02-15T17:51:19.000Z (over 2 years ago)
- Last Synced: 2023-03-05T22:59:35.760Z (about 2 years ago)
- Language: HTML
- Size: 42 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
In This milestone, you will be extending the functionality of the project we worked in the level.
The specification for this program is as follows,
## Specification
You are asked to build the same project we worked on in the level and add two new features to it.
1) A Filter to filter out completed tasks in the Tasks Listing API.
2) Creating a model to store the history of the tasks changes in status
The model should store the old status and the new status it was updated to, it should also store the data and time of this change.
3) API to view all changes made to a task. This API should have filters based on the date and status.This milestone should be implemented with the Django ORM. All required model changes and migrations must be performed by yourself, make sure to include any migrations created in the submission.
The routes are not predefined, you can use any names for them.
## Boilerplate code
Use the following repository as a starting point for this project: https://github.com/vigneshhari/GDC-Level-7-Milestone
to install the requirements for this project, run the following command in your terminal:
```bash
pip install -r requirements.txt
```## Submission
Once all the required features are implemented, push the code to a GitHub repository and submit the link to the repo.