No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

text.py 264B

1234567891011121314
  1. #-*- coding: utf-8 -*-
  2. from EditorialModel.fields import EmField
  3. class EmFieldText(EmField):
  4. ftype = 'text'
  5. help = 'A text field (big string)'
  6. def __init__(self, **kwargs):
  7. super(EmFieldText, self).__init__(**kwargs)
  8. fclass = EmFieldText