实例介绍
django 开发公司bug管理系统,django 开发公司bug管理系统django 开发公司bug管理系统
【实例截图】
【核心代码】
BMSproject最终版
└── BMSproject
├── BMSproject
│ ├── __init__.py
│ ├── __pycache__
│ │ ├── __init__.cpython-36.pyc
│ │ ├── settings.cpython-36.pyc
│ │ ├── urls.cpython-36.pyc
│ │ └── wsgi.cpython-36.pyc
│ ├── settings.py
│ ├── urls.py
│ └── wsgi.py
├── Bug管理系统.doc
├── app
│ ├── __init__.py
│ ├── __pycache__
│ │ ├── __init__.cpython-36.pyc
│ │ ├── admin.cpython-36.pyc
│ │ ├── apps.cpython-36.pyc
│ │ ├── models.cpython-36.pyc
│ │ └── views.cpython-36.pyc
│ ├── admin.py
│ ├── apps.py
│ ├── migrations
│ │ ├── 0001_initial.py
│ │ ├── __init__.py
│ │ └── __pycache__
│ │ ├── 0001_initial.cpython-36.pyc
│ │ └── __init__.cpython-36.pyc
│ ├── models.py
│ ├── static
│ │ ├── css
│ │ │ ├── addUser_defect_v4.css
│ │ │ ├── animate.css
│ │ │ ├── base.css
│ │ │ ├── bootstrap-select.min.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
│ │ │ ├── bootstrap.min2.css
│ │ │ ├── bug_work.css
│ │ │ ├── default.css
│ │ │ ├── douban.css
│ │ │ ├── iconfont.css
│ │ │ ├── question_model.css
│ │ │ ├── register.css
│ │ │ ├── style-common.css
│ │ │ ├── style-index.css
│ │ │ └── style-media.css
│ │ ├── file
│ │ │ ├── 343bcfde-04ce-11e9-b997-3497f6899dce.doc
│ │ │ ├── 55e56998-04d0-11e9-a05b-3497f6899dce.doc
│ │ │ ├── 5764be6e-0424-11e9-8723-3497f6899dce.txt
│ │ │ ├── 57805d26-0424-11e9-b98b-3497f6899dce.doc
│ │ │ ├── 57a068be-0424-11e9-9bf6-3497f6899dce.rar
│ │ │ ├── 5874af0c-0451-11e9-92b3-3497f6899dce.rar
│ │ │ ├── 70874d06-0457-11e9-a13f-3497f6899dce.txt
│ │ │ ├── 70ad4c24-0457-11e9-8749-3497f6899dce.rar
│ │ │ ├── 70d9db0a-0457-11e9-b88f-3497f6899dce.doc
│ │ │ ├── 9ca4ab36-0451-11e9-847a-3497f6899dce.rar
│ │ │ ├── b2f2e266-04d3-11e9-b8e9-3497f6899dce.doc
│ │ │ ├── cb7a6dbe-0420-11e9-8773-3497f6899dce.rar
│ │ │ ├── d1138670-0451-11e9-8dc8-3497f6899dce.rar
│ │ │ ├── eb69bc8c-04d4-11e9-bf6f-3497f6899dce.doc
│ │ │ └── f501ebf4-04cd-11e9-9136-3497f6899dce.sqlite3
│ │ ├── fonts
│ │ │ ├── demo.css
│ │ │ ├── demo_symbol.html
│ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ ├── glyphicons-halflings-regular.svg
│ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ ├── glyphicons-halflings-regular.woff
│ │ │ ├── glyphicons-halflings-regular.woff2
│ │ │ ├── iconfont.css
│ │ │ ├── iconfont.eot
│ │ │ ├── iconfont.js
│ │ │ ├── iconfont.svg
│ │ │ ├── iconfont.ttf
│ │ │ └── iconfont.woff
│ │ ├── jquery-3.2.1.min.js
│ │ ├── jquery.cookie.js
│ │ ├── js
│ │ │ ├── bootstrap.js
│ │ │ ├── bootstrap.min.js
│ │ │ └── npm.js
│ │ └── pic
│ │ ├── bom_arrow.png
│ │ ├── bottom-left.png
│ │ ├── bottom-right.png
│ │ ├── bugdenglu.png
│ │ ├── buglogo.png
│ │ ├── bugout-logo@2x.png
│ │ ├── bugtou.png
│ │ ├── bumengli.png
│ │ ├── cpgl.png
│ │ ├── exit65.png
│ │ ├── exit_quit_24px_16.png
│ │ ├── gerenxinxilogo.png
│ │ ├── head.png
│ │ ├── icon.png
│ │ ├── querenwt.png
│ │ ├── tianjiauser.png
│ │ ├── tianjiauser2.png
│ │ ├── tianjiawenti.png
│ │ ├── tjbumen.png
│ │ ├── tjchanpin.png
│ │ ├── tjcpbb.png
│ │ ├── tjxmu.png
│ │ ├── tjyh.png
│ │ ├── wjxzai.png
│ │ ├── xiangmu.png
│ │ ├── yonghu.png
│ │ ├── zhuye2333.png
│ │ ├── zhuye333.png
│ │ ├── 退出.png
│ │ └── 门店问题.png
│ ├── templates
│ │ ├── appdept.html
│ │ ├── appmatter.html
│ │ ├── appmeans.html
│ │ ├── appproduct.html
│ │ ├── appproject.html
│ │ ├── apppversion.html
│ │ ├── cpindex.html
│ │ ├── denglu.html
│ │ ├── fenpeimatter.html
│ │ ├── gerenxinxi.html
│ │ ├── index.html
│ │ ├── index2.html
│ │ ├── jshowdept.html
│ │ ├── jshowmatter.html
│ │ ├── jshowproduct.html
│ │ ├── jshowproject.html
│ │ ├── jshowuser.html
│ │ ├── kfindex.html
│ │ ├── kshowmatter.html
│ │ ├── moban.html
│ │ ├── moban2.html
│ │ ├── qshowmatter.html
│ │ ├── qupmatter.html
│ │ ├── showdept.html
│ │ ├── showmatter.html
│ │ ├── showmeans.html
│ │ ├── showmeansexp.html
│ │ ├── showproduct.html
│ │ ├── showproject.html
│ │ ├── showpversion.html
│ │ ├── showuser.html
│ │ ├── tzappbanben.html
│ │ ├── tzappmatter.html
│ │ ├── tzappmeans.html
│ │ ├── tzappproduct.html
│ │ ├── tzappproject.html
│ │ ├── tzbumensucess.html
│ │ ├── tzfenpei.html
│ │ ├── tzqumater.html
│ │ ├── tzsucess.html
│ │ ├── tzupmatter.html
│ │ ├── tzupproduct.html
│ │ ├── tzupuser.html
│ │ ├── tzxiugaigerenxinxi.html
│ │ ├── updept.html
│ │ ├── upmatter.html
│ │ ├── upproduct.html
│ │ ├── upproject.html
│ │ ├── upuser.html
│ │ ├── wenjianxiazai.html
│ │ ├── xmindex.html
│ │ ├── zhuce.html
│ │ ├── zz.html
│ │ └── 临时保存.html
│ ├── tests.py
│ └── views.py
├── db.sqlite3
├── dug系统.txt
├── manage.py
└── 演示内容.txt
14 directories, 167 files
标签:
相关软件
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论