models.py 510 B

12345678910111213
  1. #coding:utf-8
  2. #
  3. from django.db import models
  4. from DjangoUeditor.models import UEditorField
  5. class Blog(models.Model):
  6. Name=models.CharField('姓名',max_length=100,blank=True)
  7. Description=models.TextField('描述',blank=True)
  8. ImagePath=models.CharField('图片目录',max_length=100,blank=True)
  9. Content=UEditorField('内容',height=200,width=500,default='test',imagePath="aaa/",imageManagerPath="bb",toolbars="mini",options={"elementPathEnabled":True},filePath='bb',blank=True)