summaryrefslogtreecommitdiff
path: root/app/resume/models.py
blob: 38f041a716094a79148c0a941ed0bb27e72a8cc5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
from django.db import models
from django.core.urlresolvers import reverse

from utils.widgets import markdown_to_html


class Publisher(models.Model):
    name = models.CharField(max_length=200)
    slug = models.SlugField(max_length=50)
    body_markdown = models.TextField(null=True, blank=True)
    body_html = models.TextField(null=True, blank=True)
    url = models.CharField(max_length=200, blank=True, null=True)
    payment_time = models.DecimalField(max_digits=2, decimal_places=0)
    order = models.DecimalField(max_digits=1, decimal_places=0)

    class Meta:
        ordering = ('order',)

    def __str__(self):
        return self.name

    def save(self, *args, **kwargs):
        if self.body_markdown:
            self.body_html = markdown_to_html(self.body_markdown)
        super(Publisher, self).save()


class PubItem(models.Model):
    title = models.CharField(max_length=200)
    slug = models.CharField(max_length=50)
    body_markdown = models.TextField(null=True, blank=True)
    body_html = models.TextField(null=True, blank=True)
    url = models.CharField(max_length=200, blank=True, null=True)
    pub_date = models.DateTimeField('Date published')
    publisher = models.ForeignKey(Publisher)

    class Meta:
        ordering = ('-pub_date',)

    def __str__(self):
        return self.title

    def get_absolute_url(self):
        return reverse("resume:detail", kwargs={"publisher": self.publisher.slug, "slug": self.slug})

    def save(self, *args, **kwargs):
        if self.body_markdown:
            self.body_html = markdown_to_html(self.body_markdown)
        super(PubItem, self).save()