From 54881d59d4934043e4789c77b9c4fd9c6560e993 Mon Sep 17 00:00:00 2001 From: Ryan Nowakowski Date: Tue, 11 Oct 2016 21:39:20 -0500 Subject: [PATCH] HTML should be all caps --- mosaico/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mosaico/models.py b/mosaico/models.py index 2b22a5f..de4e94e 100644 --- a/mosaico/models.py +++ b/mosaico/models.py @@ -40,7 +40,7 @@ def to_json_data(self): class Template(models.Model): key = models.CharField(max_length=10) name = models.CharField(max_length=200) - html = models.TextField() + html = models.TextField(verbose_name="HTML") last_modified = models.DateTimeField(auto_now=True) created = models.DateTimeField(auto_now_add=True) template_data = JSONField()