Django 自带分页功能 方法一:使用 Paginator 分页 1. https://doc.codingdict.com/django/topics/pagination.html Paginator 分页¶ Django提供了一些类来帮助你管理分页的数据 -- 也就是说,数据被分在 continue reading django zhuoyuebiji 2017/9/22 1210
Django admin 使用 ckeditor 富文本编辑器 开发环境 python 3.6.8 django 1.11 配置步骤 1. 安装 django-ckeditor 库 pip install django-ckeditor pip install pillow continue reading django zhuoyuebiji 2017/9/29 1915
HTML highlight 代码前端高亮、代码美化 参考资料: 1. highlightjs 官方使用文档 2. highlightjs 代码各种风格 3. ckeditor 代码高亮插件 Code Snippet 官方使用文档 4. Code Snippet 插件下载地址 配置步 continue reading html zhuoyuebiji 2017/9/29 2191
创建个人网站准备的一些材料 博客可能使用到的框架和工具 前端框架:bootstrip.js, jQuery,vue.js 网站主题:Amaze UI, NexT,欲思主题 web 框架:django API 接口:rest_framework 后台用户管理系统:django-user, d continue reading django zhuoyuebiji 2017/10/1 1941
Windows +apache + django + mod_wsgi 部署 Django 站点 前提、部署环境 1. windows 10 x64 2. apache 2.4 x64 3. python 3.5 x64 4. django 1.11 5. mod_wsgi: ap24vc14-cp35-cp35m-win_amd64 continue reading apache zhuoyuebiji 2017/10/7 1549
Django 通用视图(generic view)获取 request from django.views import generic from blog.models import * from ipware.ip import get_ip class IndexView(generic.ListView): template_na continue reading django zhuoyuebiji 2017/10/8 1304
Django 按年月日归档 view.py class TimlelineView(generic.ListView): model = Article template_name = 'timeline.html' context_object_name = "article" continue reading django zhuoyuebiji 2018/8/4 1159
网站 http 资源切换成 https jquery : https://libs.baidu.com/jquery/2.1.4/jquery.min.js,https://www.bootcdn.cn/jquery/ amazeui: https://cdnjs.com/libraries/amazeui/ continue reading django zhuoyuebiji 2018/8/4 991
Django sitemap.xml 修改 loc 显示的 example.com 参考链接:http://blog.sina.com.cn/s/blog_6fbca40e0101er8p.html 进入数据库,找到表单:django_site, 把 settings.py 里面 SITE_ID 对应 id 的字段 name 和 domain 字段修改成你想要的。(当然也可以 continue reading django zhuoyuebiji 2018/8/8 1226
Centos7 使用 Supervisor 守护进程 Celery Supervisor 官网 http://supervisord.org/ Supervisor 安装 Centos 7 安装 Supervisord centos7 进程守护命令 Systemd Supervisor 守护进程 continue reading centos zhuoyuebiji 2019/6/6 2002