diff options
author | luxagraf <sng@luxagraf.net> | 2013-05-02 09:17:45 -0400 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2013-05-02 09:17:45 -0400 |
commit | 21709e6628cc0acfce9f229462048dbf27817695 (patch) | |
tree | 704150c92ab8ca37ee4b5f58f53043b0368d32d7 /app/blog/models.py | |
parent | f89e7453c343b8d1e4f50efec9cb331db42ff99e (diff) |
reverted writing view to a function because class-based view was conflicting with my build script
Diffstat (limited to 'app/blog/models.py')
-rw-r--r-- | app/blog/models.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/blog/models.py b/app/blog/models.py index 8e7a513..a1025cc 100644 --- a/app/blog/models.py +++ b/app/blog/models.py @@ -37,6 +37,8 @@ TEMPLATES = ( (1, 'double'), (2, 'single-dark'), (3, 'double-dark'), + (4, 'bigimg'), + (5, 'bigimg-dark'), ) class PostImage(models.Model): title = models.CharField(max_length=100) |