Skip to content
This repository has been archived by the owner on Nov 29, 2021. It is now read-only.

Commit

Permalink
HTML should be all caps
Browse files Browse the repository at this point in the history
  • Loading branch information
tubaman committed Oct 12, 2016
1 parent 11825a0 commit 54881d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mosaico/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 54881d5

Please sign in to comment.