Django Pannel error Could not reach the URL. Please check the link

Here when i update my model i am getting this error why ?

enter image description here

This is my models.py

class ProductImage(models.Model):
    user = models.ForeignKey(Seller,on_delete=models.CASCADE, related_name='Product_Image_User')
Video = models.FileField(upload_to="Product/video", blank=True, null=True)
images = models.JSONField(default=list)  # Stores multiple image URLs

Date = models.DateTimeField(default=timezone.now)

Product = models.ForeignKey(Product, on_delete=models.CASCADE, related_name="product_images", blank=False, null=False)

secret_key = models.TextField(blank=True,null=True)

def __str__(self):
    return f"{self.user}-{self.Product}-{self.id}"

First and Foremost please correctly Indent the code write now django-ORM is not getting which field are in your class ProductImage and write variable in shorter format like ( Video-video).

Even after fixing this if the code do not run there can be error in your views or url or importing of model
Like this:

class ProductImage(models.Model):
    user = models.ForeignKey(Seller,on_delete=models.CASCADE, related_name='Product_Image_User')    
    video = models.FileField(upload_to="Product/video", blank=True, null=True)
    images = models.JSONField(default=list)  # Stores multiple image URLs
    date = models.DateTimeField(default=timezone.now)
    product = models.ForeignKey(Product, on_delete=models.CASCADE, related_name="product_images", blank=False, null=False)
    secret_key = models.TextField(blank=True,null=True)

    def __str__(self):
        return f"{self.user}-{self.Product}-{self.id}"
Вернуться на верх