add a different cell type for testing

This commit is contained in:
Frédéric Péters 2014-12-07 17:22:49 +01:00
parent 4628509fd4
commit 234950845a
1 changed files with 4 additions and 0 deletions

View File

@ -32,3 +32,7 @@ class CellBase(models.Model):
class TextCell(CellBase):
text = RichTextField(_('Text'), null=True)
class FortuneCell(CellBase):
pass