瀏覽代碼

[not tested] Added a boolean field

Yann Weber 9 年之前
父節點
當前提交
3801148387
共有 1 個文件被更改,包括 12 次插入0 次删除
  1. 12
    0
      EditorialModel/fieldtypes/bool.py

+ 12
- 0
EditorialModel/fieldtypes/bool.py 查看文件

@@ -0,0 +1,12 @@
1
+#-*- coding: utf-8 -*-
2
+
3
+from EditorialModel.fields import EmField
4
+
5
+class EmFieldBool(EmField):
6
+    
7
+    ftype = 'bool'
8
+    
9
+    ## @brief A char field
10
+    # @brief max_length int : The maximum length of this field
11
+    def __init__(self, **kwargs):
12
+        super(EmFieldChar, self).__init__(**kwargs)

Loading…
取消
儲存