在好例子网,分享、交流、成长!
您当前所在位置:首页Python 开发实例Python数据库编程 → Django搭建管理系统

Django搭建管理系统

Python数据库编程

下载此实例
  • 开发语言:Python
  • 实例大小:0.79M
  • 下载次数:41
  • 浏览次数:208
  • 发布时间:2022-10-31
  • 实例类别:Python数据库编程
  • 发 布 人:spyed
  • 文件格式:.7z
  • 所需积分:2
 相关标签: web框架的初步使用

实例介绍

【实例简介】Django搭建管理系统

是初学者学习的好帮手

【实例截图】

from clipboard

from clipboard

【核心代码】

.
├── Django搭建管理系统_day16.7z
├── Monaco.ttf
├── app01
│   ├── __init__.py
│   ├── __pycache__
│   │   ├── __init__.cpython-39.pyc
│   │   ├── admin.cpython-39.pyc
│   │   ├── apps.cpython-39.pyc
│   │   └── models.cpython-39.pyc
│   ├── admin.py
│   ├── apps.py
│   ├── middleware
│   │   ├── __pycache__
│   │   │   └── auth.cpython-39.pyc
│   │   └── auth.py
│   ├── migrations
│   │   ├── 0001_initial.py
│   │   ├── 0002_auto_20211126_0115.py
│   │   ├── 0003_prettynum.py
│   │   ├── 0004_admin.py
│   │   ├── 0005_task.py
│   │   ├── __init__.py
│   │   └── __pycache__
│   │       ├── 0001_initial.cpython-39.pyc
│   │       ├── 0002_auto_20211126_0115.cpython-39.pyc
│   │       ├── 0003_prettynum.cpython-39.pyc
│   │       ├── 0004_admin.cpython-39.pyc
│   │       ├── 0005_task.cpython-39.pyc
│   │       └── __init__.cpython-39.pyc
│   ├── models.py
│   ├── static
│   │   ├── css
│   │   ├── img
│   │   │   ├── 1.png
│   │   │   └── code.jpg
│   │   ├── js
│   │   │   └── jquery-3.6.0.min.js
│   │   └── plugins
│   │       ├── bootstrap-3.4.1
│   │       │   ├── css
│   │       │   │   ├── bootstrap-theme.css
│   │       │   │   ├── bootstrap-theme.css.map
│   │       │   │   ├── bootstrap-theme.min.css
│   │       │   │   ├── bootstrap-theme.min.css.map
│   │       │   │   ├── bootstrap.css
│   │       │   │   ├── bootstrap.css.map
│   │       │   │   ├── bootstrap.min.css
│   │       │   │   └── bootstrap.min.css.map
│   │       │   ├── fonts
│   │       │   │   ├── glyphicons-halflings-regular.eot
│   │       │   │   ├── glyphicons-halflings-regular.svg
│   │       │   │   ├── glyphicons-halflings-regular.ttf
│   │       │   │   ├── glyphicons-halflings-regular.woff
│   │       │   │   └── glyphicons-halflings-regular.woff2
│   │       │   └── js
│   │       │       ├── bootstrap.js
│   │       │       ├── bootstrap.min.js
│   │       │       └── npm.js
│   │       └── bootstrap-datepicker
│   │           ├── css
│   │           │   ├── bootstrap-datepicker.css
│   │           │   ├── bootstrap-datepicker.css.map
│   │           │   ├── bootstrap-datepicker.min.css
│   │           │   ├── bootstrap-datepicker.standalone.css
│   │           │   ├── bootstrap-datepicker.standalone.css.map
│   │           │   ├── bootstrap-datepicker.standalone.min.css
│   │           │   ├── bootstrap-datepicker3.css
│   │           │   ├── bootstrap-datepicker3.css.map
│   │           │   ├── bootstrap-datepicker3.min.css
│   │           │   ├── bootstrap-datepicker3.standalone.css
│   │           │   ├── bootstrap-datepicker3.standalone.css.map
│   │           │   └── bootstrap-datepicker3.standalone.min.css
│   │           ├── js
│   │           │   ├── bootstrap-datepicker.js
│   │           │   └── bootstrap-datepicker.min.js
│   │           └── locales
│   │               ├── bootstrap-datepicker-en-CA.min.js
│   │               ├── bootstrap-datepicker.ar-tn.min.js
│   │               ├── bootstrap-datepicker.ar.min.js
│   │               ├── bootstrap-datepicker.az.min.js
│   │               ├── bootstrap-datepicker.bg.min.js
│   │               ├── bootstrap-datepicker.bm.min.js
│   │               ├── bootstrap-datepicker.bn.min.js
│   │               ├── bootstrap-datepicker.br.min.js
│   │               ├── bootstrap-datepicker.bs.min.js
│   │               ├── bootstrap-datepicker.ca.min.js
│   │               ├── bootstrap-datepicker.cs.min.js
│   │               ├── bootstrap-datepicker.cy.min.js
│   │               ├── bootstrap-datepicker.da.min.js
│   │               ├── bootstrap-datepicker.de.min.js
│   │               ├── bootstrap-datepicker.el.min.js
│   │               ├── bootstrap-datepicker.en-AU.min.js
│   │               ├── bootstrap-datepicker.en-CA.min.js
│   │               ├── bootstrap-datepicker.en-GB.min.js
│   │               ├── bootstrap-datepicker.en-IE.min.js
│   │               ├── bootstrap-datepicker.en-NZ.min.js
│   │               ├── bootstrap-datepicker.en-ZA.min.js
│   │               ├── bootstrap-datepicker.eo.min.js
│   │               ├── bootstrap-datepicker.es.min.js
│   │               ├── bootstrap-datepicker.et.min.js
│   │               ├── bootstrap-datepicker.eu.min.js
│   │               ├── bootstrap-datepicker.fa.min.js
│   │               ├── bootstrap-datepicker.fi.min.js
│   │               ├── bootstrap-datepicker.fo.min.js
│   │               ├── bootstrap-datepicker.fr-CH.min.js
│   │               ├── bootstrap-datepicker.fr.min.js
│   │               ├── bootstrap-datepicker.gl.min.js
│   │               ├── bootstrap-datepicker.he.min.js
│   │               ├── bootstrap-datepicker.hi.min.js
│   │               ├── bootstrap-datepicker.hr.min.js
│   │               ├── bootstrap-datepicker.hu.min.js
│   │               ├── bootstrap-datepicker.hy.min.js
│   │               ├── bootstrap-datepicker.id.min.js
│   │               ├── bootstrap-datepicker.is.min.js
│   │               ├── bootstrap-datepicker.it-CH.min.js
│   │               ├── bootstrap-datepicker.it.min.js
│   │               ├── bootstrap-datepicker.ja.min.js
│   │               ├── bootstrap-datepicker.ka.min.js
│   │               ├── bootstrap-datepicker.kh.min.js
│   │               ├── bootstrap-datepicker.kk.min.js
│   │               ├── bootstrap-datepicker.km.min.js
│   │               ├── bootstrap-datepicker.ko.min.js
│   │               ├── bootstrap-datepicker.kr.min.js
│   │               ├── bootstrap-datepicker.lt.min.js
│   │               ├── bootstrap-datepicker.lv.min.js
│   │               ├── bootstrap-datepicker.me.min.js
│   │               ├── bootstrap-datepicker.mk.min.js
│   │               ├── bootstrap-datepicker.mn.min.js
│   │               ├── bootstrap-datepicker.ms.min.js
│   │               ├── bootstrap-datepicker.nl-BE.min.js
│   │               ├── bootstrap-datepicker.nl.min.js
│   │               ├── bootstrap-datepicker.no.min.js
│   │               ├── bootstrap-datepicker.oc.min.js
│   │               ├── bootstrap-datepicker.pl.min.js
│   │               ├── bootstrap-datepicker.pt-BR.min.js
│   │               ├── bootstrap-datepicker.pt.min.js
│   │               ├── bootstrap-datepicker.ro.min.js
│   │               ├── bootstrap-datepicker.rs-latin.min.js
│   │               ├── bootstrap-datepicker.rs.min.js
│   │               ├── bootstrap-datepicker.ru.min.js
│   │               ├── bootstrap-datepicker.si.min.js
│   │               ├── bootstrap-datepicker.sk.min.js
│   │               ├── bootstrap-datepicker.sl.min.js
│   │               ├── bootstrap-datepicker.sq.min.js
│   │               ├── bootstrap-datepicker.sr-latin.min.js
│   │               ├── bootstrap-datepicker.sr.min.js
│   │               ├── bootstrap-datepicker.sv.min.js
│   │               ├── bootstrap-datepicker.sw.min.js
│   │               ├── bootstrap-datepicker.ta.min.js
│   │               ├── bootstrap-datepicker.tg.min.js
│   │               ├── bootstrap-datepicker.th.min.js
│   │               ├── bootstrap-datepicker.tk.min.js
│   │               ├── bootstrap-datepicker.tr.min.js
│   │               ├── bootstrap-datepicker.uk.min.js
│   │               ├── bootstrap-datepicker.uz-cyrl.min.js
│   │               ├── bootstrap-datepicker.uz-latn.min.js
│   │               ├── bootstrap-datepicker.vi.min.js
│   │               ├── bootstrap-datepicker.zh-CN.min.js
│   │               └── bootstrap-datepicker.zh-TW.min.js
│   ├── templates
│   │   ├── admin_list.html
│   │   ├── change.html
│   │   ├── depart_add.html
│   │   ├── depart_edit.html
│   │   ├── depart_list.html
│   │   ├── error.html
│   │   ├── layout.html
│   │   ├── login.html
│   │   ├── pretty_add.html
│   │   ├── pretty_edit.html
│   │   ├── pretty_list.html
│   │   ├── task_list.html
│   │   ├── user_add.html
│   │   ├── user_edit.html
│   │   ├── user_list.html
│   │   └── user_model_form_add.html
│   ├── tests.py
│   ├── utils
│   │   ├── __pycache__
│   │   │   ├── bootstrap.cpython-39.pyc
│   │   │   ├── code.cpython-39.pyc
│   │   │   ├── encrypt.cpython-39.pyc
│   │   │   ├── form.cpython-39.pyc
│   │   │   └── pagination.cpython-39.pyc
│   │   ├── bootstrap.py
│   │   ├── code.py
│   │   ├── encrypt.py
│   │   ├── form.py
│   │   └── pagination.py
│   └── views
│       ├── __pycache__
│       │   ├── account.cpython-39.pyc
│       │   ├── admin.cpython-39.pyc
│       │   ├── depart.cpython-39.pyc
│       │   ├── pretty.cpython-39.pyc
│       │   ├── task.cpython-39.pyc
│       │   └── user.cpython-39.pyc
│       ├── account.py
│       ├── admin.py
│       ├── depart.py
│       ├── pretty.py
│       ├── task.py
│       └── user.py
├── day16
│   ├── __init__.py
│   ├── __pycache__
│   │   ├── __init__.cpython-39.pyc
│   │   ├── settings.cpython-39.pyc
│   │   ├── urls.cpython-39.pyc
│   │   └── wsgi.cpython-39.pyc
│   ├── asgi.py
│   ├── settings.py
│   ├── urls.py
│   └── wsgi.py
└── manage.py

26 directories, 189 files



实例下载地址

Django搭建管理系统

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

第 1 楼 tylerhe 发表于: 2022-11-17 15:32 44
缺少数据库环境的说明及建表,初始化脚本,程序转不起来

支持(0) 盖楼(回复)

发表评论

(您的评论需要经过审核才能显示)

查看所有1条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警