I have a Django project where I am pulling back a list of tasks. These tasks could be for many projects.
Task1: Project1 Task2: Project2
I really want to be able to group by project, so they all sit together, but the project names are input by the user, so I can't hardcode if statements.
How could I approach this?