ojuso-map/apps/files/models.py

42 lines
797 B
Python
Raw Normal View History

2018-05-01 02:23:36 +00:00
from django.contrib.auth.models import User
from django.db import models
from django.utils.translation import ugettext as _
from apps.map.models import CaseStudy, CaseStudyDraft
class BaseFile(models.Model):
file = models.FileField(
upload_to='.',
)
2018-05-01 02:23:36 +00:00
user = models.ForeignKey(
User, related_name='%(class)s'
2018-05-01 02:23:36 +00:00
)
class Meta:
abstract = True
2018-04-23 05:15:33 +00:00
def __str__(self):
return self.file.name
def name(self):
return self.file.name
class File(BaseFile):
pass
class ImageFile(BaseFile):
caption = models.CharField(
verbose_name=_("Image caption"),
max_length=240,
blank=True,
)
credit = models.CharField(
verbose_name=_("Image credit"),
max_length=240,
blank=True,
)