summaryrefslogtreecommitdiffstats
path: root/feincms/content/file/models.py
blob: 4ad4f20d26c95faf8311b9553ba04f7a37f8ccab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from django.db import models
from django.template.loader import render_to_string
from django.utils.translation import ugettext_lazy as _


class FileContent(models.Model):
    title = models.CharField(max_length=200)
    file = models.FileField(_('file'), upload_to='filecontent')

    class Meta:
        abstract = True
        verbose_name = _('file')
        verbose_name_plural = _('files')

    def render(self, **kwargs):
        return render_to_string([
            'content/file/%s.html' % self.region.key,
            'content/file/default.html',
            ], {'content': self})