diff options
Diffstat (limited to 'app/locations/models.py')
-rw-r--r-- | app/locations/models.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/app/locations/models.py b/app/locations/models.py index 50fda3d..f160b1f 100644 --- a/app/locations/models.py +++ b/app/locations/models.py @@ -134,6 +134,8 @@ class Location(models.Model): country_slug = models.CharField(max_length=50, blank=True) region_name = models.CharField(max_length=50, blank=True) region_slug = models.CharField(max_length=50, blank=True) + description = models.TextField(blank=True) + description_html = models.TextField(blank=True) class Meta: ordering = ('-pub_date',) @@ -170,6 +172,7 @@ class Location(models.Model): self.country_slug = self.state.country.slug self.region_name = self.state.country.lux_region.name self.region_slug = self.state.country.lux_region.slug + self.description_html = markdown_to_html(self.description) super(Location, self).save() class Route(models.Model): |