This commit is contained in:
Yamozha
2021-02-09 17:41:06 +02:00
parent 63168a485c
commit d1280445f4
29 changed files with 99 additions and 2 deletions

4
website/upload/models.py Normal file
View File

@ -0,0 +1,4 @@
from django.db import models
class Image(models.Model):
image = models.ImageField(upload_to='static/%Y/%m/%d/', blank=True)