get() returned more than one UserTrack -- it returned more than 20! code example
Example: MultipleObjectsReturned: get() returned more than one Question -- it returned 3!
Model.objects.get(field_name=some_param)
# So instead of using get() you should use filter()
# which will return multiple records. Such as
Model.objects.filter(field_name=some_param)