returnBadRequestResponse('A version number must be provided')
returnBadRequestResponse("A version number must be provided")
db_object=get_object_or_404(self.model,
author__username__iexact=author_name,
name__iexact=object_name,
version=version)
db_object=get_object_or_404(
self.model,
author__username__iexact=author_name,
name__iexact=object_name,
version=version,
)
# Check that the object can be deleted
ifnot(db_object.deletable()):
returnForbiddenResponse("The {} can't be deleted anymore (needed by an attestation, an algorithm or another data format)".format(db_object.model_name()))
ifnot(db_object.deletable()):
returnForbiddenResponse(
"The {} can't be deleted anymore (needed by an attestation, an algorithm or another data format)".format(