diff options
| author | Stephan Christianus <stephanchrst@gmail.com> | 2023-01-10 03:11:22 +0000 |
|---|---|---|
| committer | Stephan Christianus <stephanchrst@gmail.com> | 2023-01-10 03:11:22 +0000 |
| commit | 19bbd3203d41d9f52206d7ceaa96480a19566197 (patch) | |
| tree | 5f3ec2b28c7197d339b58d13a93967fa4a498a53 /indoteknik_custom/models | |
| parent | b1329f940ae66b60185fa097012393b0d51b9e5f (diff) | |
| parent | e4abbde470d917d04256c9804b80d82194d73b51 (diff) | |
Merged in release (pull request #18)
change text to html in customer review
Diffstat (limited to 'indoteknik_custom/models')
| -rw-r--r-- | indoteknik_custom/models/customer_review.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/indoteknik_custom/models/customer_review.py b/indoteknik_custom/models/customer_review.py index 5fb93b2e..d64d2d5a 100644 --- a/indoteknik_custom/models/customer_review.py +++ b/indoteknik_custom/models/customer_review.py @@ -8,6 +8,7 @@ class CustomerReview(models.Model): customer_name = fields.Char(string='Customer') image = fields.Binary(string='Image') ulasan = fields.Char(string='Ulasan') + ulasan_html = fields.Html('Ulasan html', sanitize_attributes=False, sanitize_form=False) name = fields.Char(string='Name') jabatan = fields.Char(string='Jabatan') status = fields.Selection([ |
