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.

int.py 257B

123456789101112131415
  1. #-*- coding: utf-8 -*-
  2. from EditorialModel.fields import EmField
  3. class EmFieldInt(EmField):
  4. ftype = 'int'
  5. help = 'Basic integer field'
  6. def __init__(self, **kwargs):
  7. super(EmFieldInt, self).__init__(**kwargs)
  8. fclass=EmFieldInt