1
# -*- coding: utf-8 -*-
2
from __future__ import unicode_literals
4
from django.db import models
7
class PrivacyPolicy(models.Model):
9
language = models.CharField(default='English', max_length=30,
10
help_text='Will be displayed as a level 1 header',
12
policy_text = models.TextField(
13
help_text='Text will be rendered using markdown syntax')
16
ordering = ['language']