From: Piment Noir Task Force Date: Mon, 17 Nov 2014 15:00:58 +0000 (+0100) Subject: Add a comics taxonomy field. X-Git-Url: https://git.piment-noir.org/?p=webcomics.git;a=commitdiff_plain Add a comics taxonomy field. Signed-off-by: Piment Noir Task Force --- diff --git a/comicsporn/models.py b/comicsporn/models.py index 3a31bfb..3024820 100644 --- a/comicsporn/models.py +++ b/comicsporn/models.py @@ -17,6 +17,7 @@ class Style(models.Model): TAG_NAME_CHOICES = ( (_('MG'), _('Manga')), (_('HF'), _('Heroic Fantasy')), + (_('SF'), _('Science Fiction')), ) name = models.CharField(_('name'), max_length=30, choices=TAG_NAME_CHOICES) def __unicode__(self):