Need to create Models in django for a task management app. The columns for planned_task are
- Task Area
- Task Type
- Task Assigned Date
- Assigned to
- Supporting member
This model will be a reference for actual tasks, and I have to link this model with actual_task model so that we can track delay in the progress.
The “Assigned to” and “Supporting member” is a foreign key taken from Users model. But when I gave these two I get error
The “Assigned to” and “Supporting member” is a foreign key taken from Users model. But when I gave these two I get error
Reverse accessor ‘User.plan_set’ for ‘task_management.Plan.assigned_to’ clashes with reverse accessor for ‘task_management.Plan.supporting_member’
Vikash G is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.