models.py 254 B

12345678
  1. from django.db import models
  2. class Award(models.Model):
  3. description = models.TextField(max_length=500,blank=True,
  4. null=True)
  5. photo = models.ImageField(upload_to='Award/',blank=True)
  6. # Create your models here.