simransinghtws / todo_app

1 stars 1 forks source link

Enhancement of Todo App with Admin and Model Updates #9

Open simransinghtws opened 9 months ago

simransinghtws commented 9 months ago

PR Type:

Enhancement


PR Description:

This pull request includes enhancements to the Todo application. It introduces changes to the admin registration and the models. The changes include the addition of a new TodoList model and updates to the admin registration process. The TodoList model is linked to the User and Todo models via foreign keys. The admin registration process has been updated to register the Todo model.


PR Main Files Walkthrough:

files: `todoapp/admin.py`: The admin registration process has been updated to register the Todo model. The changes appear to be duplicated, which may be an oversight during the commit. `todoapp/models.py`: A new model, TodoList, has been added. This model includes foreign key relationships to the User and Todo models. The __str__ method of the model returns the username of the associated user.