Add video field to MainCategoryModel and update related serializers and views

This commit is contained in:
Parsa Nazer
2025-05-21 14:51:24 +03:30
parent 7e54d8a62f
commit 2874798c67
5 changed files with 43 additions and 7 deletions
+1 -1
View File
@@ -13,7 +13,7 @@ class MainCategoryModel(models.Model):
image = models.ImageField(upload_to='category_model/',verbose_name='عکس', blank=True, null=True)
meta_title = models.CharField(max_length=60, verbose_name="عنوان متا", help_text="عنوان متا برای SEO", blank=True, null=True)
meta_description = models.TextField(max_length=160, verbose_name="توضیحات متا", help_text="توضیحات متا برای SEO", blank=True, null=True)
video = models.FileField(upload_to='category_videos/', blank=True, null=True, verbose_name='ویدیو')
class Meta:
verbose_name = "دسته‌بندی اصلی"
verbose_name_plural = "دسته‌بندی‌هااصلی"