num if not limit or num < limit else 'more than %s' % (limit - 1), endpoint.models.Input.MultipleObjectsReturned: get() returned more than one Input -- 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)