imagehost/imagehosting/models.py

28 lines
675 B
Python
Raw Normal View History

2017-09-27 13:35:32 +03:00
# -*- coding: utf-8 -*-
2017-10-11 19:01:22 +03:00
2017-09-27 13:35:32 +03:00
from __future__ import unicode_literals
from django.db import models
from django.utils import timezone
import os
2017-10-10 14:19:27 +03:00
2017-09-27 13:35:32 +03:00
class Post(models.Model):
name = models.CharField(max_length=30, blank=True)
file = models.FileField(upload_to='images')
2017-10-11 19:01:22 +03:00
thumb_name = property(thumb_name)
orig_name = property(orig_name)
2017-09-27 13:35:32 +03:00
def publish(self):
self.published_date = timezone.now()
self.save()
def __unicode__(self):
return self.name
2017-10-10 14:19:27 +03:00
def thumb_name(self):
x = os.path.split(self.file.name)[-1]
return '/thumb_' + x
2017-10-11 19:01:22 +03:00
2017-09-27 13:35:32 +03:00
def orig_name(self):
2017-10-10 14:19:27 +03:00
x = os.path.split(self.file.name)[-1]
2017-10-11 19:01:22 +03:00
return x