diff options
author | luxagraf <sng@luxagraf.net> | 2016-05-17 09:58:50 -0400 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2016-05-17 09:58:50 -0400 |
commit | 5a4f7455ffb3c02d6ddf4fd67cba3f73d254f20b (patch) | |
tree | dd36a6832bca92e1bf3d0be0abd4d3f9ab46d944 /app/jrnl | |
parent | 7945a5a48599677c07aff9740a625a428515eeb4 (diff) |
tweaked colors, created black version of posts and got rid of
unnecessary custom fonts
Diffstat (limited to 'app/jrnl')
-rw-r--r-- | app/jrnl/models.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/jrnl/models.py b/app/jrnl/models.py index 08d0721..21b0c8c 100644 --- a/app/jrnl/models.py +++ b/app/jrnl/models.py @@ -107,8 +107,8 @@ class Entry(models.Model): (1, 'double'), (2, 'single-dark'), (3, 'double-dark'), - (4, 'bigimg'), - (5, 'bigimg-dark'), + (4, 'single-black'), + (5, 'double-black'), ) template_name = models.IntegerField(choices=TEMPLATES, default=0) |