摘要:
目录 1,发送邮件 2,分页器 3,站点地图 4,RSS订阅功能 5,自定义上下文处理器 发送邮件 django提供了一个发送邮件的接口,相比python的smtplib库,发送的速度更快。 settings.py文件配置 # settings.py EMAIL_USER_SSL = True EM 阅读全文
摘要:
普通的富文本编辑 安装:pip install django-ckeditor 激活应用'ckeditor' 然后使用 from ckeditor.fields import RichTextField content = RichTextField() 加上上传图片 安装: pip install 阅读全文