You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

6 lines
241 B
Python

from django.http import JsonResponse
from common.utils.utils import check_container_number_validity
def validate_container(request, number):
is_valid = check_container_number_validity(number)
return JsonResponse({'valid': is_valid})