在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → Django框架 实例 项目

Django框架 实例 项目

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:3.65M
  • 下载次数:53
  • 浏览次数:482
  • 发布时间:2020-09-28
  • 实例类别:一般编程问题
  • 发 布 人:robot666
  • 文件格式:.zip
  • 所需积分:2
 

实例介绍

【实例简介】
Django框架 实例 项目Django框架 实例 项目Django框架 实例 项目Django框架 实例 项目Django框架 实例 项目Django框架 实例 项目
【实例截图】
【核心代码】
ddtuku20110530
├── ddtcms
│   ├── a.py
│   ├── common
│   │   ├── admin.py
│   │   ├── dynamicforms.py
│   │   ├── __init__.py
│   │   ├── models.py
│   │   ├── templatetags
│   │   │   ├── config.py
│   │   │   ├── filters.py
│   │   │   ├── __init__.py
│   │   │   ├── menu.py
│   │   │   ├── posttags.py
│   │   │   └── themes.py
│   │   ├── tests.py
│   │   └── views.py
│   ├── data.db
│   ├── db.cmd
│   ├── ddtcms.prj
│   ├── dos.cmd
│   ├── home
│   │   ├── __init__.py
│   │   ├── models.py
│   │   ├── templates
│   │   │   └── home
│   │   │   └── index.html
│   │   ├── tests.py
│   │   ├── urls.py
│   │   └── views.py
│   ├── __init__.py
│   ├── link
│   │   ├── admin.py
│   │   ├── forms.py
│   │   ├── __init__.py
│   │   ├── models.py
│   │   ├── templates
│   │   │   └── link
│   │   │   ├── link_list.html
│   │   │   └── newlink.html
│   │   ├── tests.py
│   │   ├── urls.py
│   │   └── views.py
│   ├── lk.xml
│   ├── locale
│   │   └── zh_CN
│   │   └── LC_MESSAGES
│   │   ├── django.mo
│   │   └── django.po
│   ├── makezhCN.cmd
│   ├── manage.py
│   ├── media
│   │   ├── css
│   │   │   ├── default.css
│   │   │   ├── django-profile.css
│   │   │   ├── forum.css
│   │   │   └── index.css
│   │   ├── htmls
│   │   │   └── wnl.html
│   │   ├── images
│   │   │   ├── avatars
│   │   │   │   ├── generic.128.jpg
│   │   │   │   ├── generic.16.jpg
│   │   │   │   ├── generic.256.jpg
│   │   │   │   ├── generic.48.jpg
│   │   │   │   ├── generic.64.jpg
│   │   │   │   ├── generic.96.jpg
│   │   │   │   └── generic.jpg
│   │   │   ├── banner
│   │   │   │   └── banner-12.jpg
│   │   │   ├── bg.gif
│   │   │   ├── box-bot-l.gif
│   │   │   ├── box-bot-r.gif
│   │   │   ├── box_tit_bg01.gif
│   │   │   ├── box_tit_bg.gif
│   │   │   ├── box-top-l.gif
│   │   │   ├── box-top-r.gif
│   │   │   ├── btn_project.gif
│   │   │   ├── btn_task.gif
│   │   │   ├── bug-high.png
│   │   │   ├── bug-low.png
│   │   │   ├── bug-medium.png
│   │   │   ├── check_green.gif
│   │   │   ├── common.gif
│   │   │   ├── DDTCMS-logo.png
│   │   │   ├── digest_1.gif
│   │   │   ├── digest_2.gif
│   │   │   ├── ethics.jpg
│   │   │   ├── favicon.ico
│   │   │   ├── h1-bg.gif
│   │   │   ├── h1-bg-r.gif
│   │   │   ├── icon_feed.gif
│   │   │   ├── icon_read.gif
│   │   │   ├── icon_rep.gif
│   │   │   ├── img.gif
│   │   │   ├── loading.gif
│   │   │   ├── logo.gif
│   │   │   ├── logo.jpg
│   │   │   ├── main_bot.gif
│   │   │   ├── p.gif
│   │   │   ├── pin_1.gif
│   │   │   ├── pin_3.gif
│   │   │   ├── plus_green.gif
│   │   │   ├── pollsmall.gif
│   │   │   ├── select-menu.gif
│   │   │   ├── side-bg.gif
│   │   │   ├── sidemenu-bottom.gif
│   │   │   ├── sidemenu-top.gif
│   │   │   ├── support
│   │   │   │   ├── a-DJANGO-site.gif
│   │   │   │   ├── csdn-huyoo.jpg
│   │   │   │   ├── ddtcms-powered.jpg
│   │   │   │   └── python-powered.png
│   │   │   ├── theme.gif
│   │   │   ├── top-menu-bg.gif
│   │   │   ├── top-menu-bg-green.gif
│   │   │   └── WPLJWO.jpg
│   │   ├── js
│   │   │   ├── jquery-1.3.2.min.js
│   │   │   └── jquery.imgareaselect-0.8.min.js
│   │   ├── themes
│   │   │   └── 2010
│   │   │   ├── css
│   │   │   │   ├── class.css
│   │   │   │   ├── Command.css
│   │   │   │   ├── page.css
│   │   │   │   └── style.css
│   │   │   ├── images
│   │   │   │   ├── bg_redian.gif
│   │   │   │   ├── box_top.gif
│   │   │   │   ├── c_box_innerbg.gif
│   │   │   │   ├── c_box_titlebg.gif
│   │   │   │   ├── inGotoRec.gif
│   │   │   │   ├── logo2.gif
│   │   │   │   ├── logo.gif
│   │   │   │   ├── mbg_01.gif
│   │   │   │   ├── mbg_02.gif
│   │   │   │   ├── ml_01.gif
│   │   │   │   ├── ml_02.gif
│   │   │   │   ├── mr_01.gif
│   │   │   │   └── mr_02.gif
│   │   │   └── js
│   │   │   ├── 22mm.js
│   │   │   ├── Command.js
│   │   │   ├── inlink.js
│   │   │   ├── js4round.js
│   │   │   ├── pjsc_01.js
│   │   │   ├── pjsc_02.js
│   │   │   ├── pjsc_04.js
│   │   │   ├── tonji.js
│   │   │   ├── viewthread.js
│   │   │   └── Zcoriginality.js
│   │   └── upload
│   │   ├── member
│   │   │   └── avatars
│   │   │   ├── generic.64.jpg
│   │   │   ├── generic.96.jpg
│   │   │   ├── generic.jpg
│   │   │   └── noavatar.gif
│   │   ├── photo
│   │   │   ├── 0CAM0SB4E.jpg
│   │   │   ├── 0.jpg
│   │   │   ├── 10.jpg
│   │   │   ├── 11.jpg
│   │   │   ├── 1.jpg
│   │   │   ├── 2.jpg
│   │   │   ├── 3.jpg
│   │   │   ├── 4.jpg
│   │   │   ├── 509-1.jpg
│   │   │   ├── 509-2.jpg
│   │   │   ├── 52801.jpg
│   │   │   ├── 52802.jpg
│   │   │   ├── 52803.jpg
│   │   │   ├── 5.jpg
│   │   │   ├── 6.jpg
│   │   │   ├── 7.jpg
│   │   │   ├── 8.jpg
│   │   │   └── 9.jpg
│   │   └── photos
│   │   └── 2010
│   │   └── 11
│   │   ├── 06
│   │   │   ├── 2010110614444304o.jpg
│   │   │   ├── 2010110614445342t.jpg
│   │   │   ├── 2010110614523190q.jpg
│   │   │   ├── 2010110614524134b.jpg
│   │   │   ├── 2010110618051882k.jpg
│   │   │   ├── 2010110618053068u.jpg
│   │   │   ├── 2010110619220382j.jpg
│   │   │   └── 2010110619220498y.jpg
│   │   └── 07
│   │   ├── 2010110710492612t.jpg
│   │   ├── 2010110710492618r.jpg
│   │   ├── 2010110710492654c.jpg
│   │   ├── 2010110710492654d.jpg
│   │   ├── 2010110710492664m.jpg
│   │   ├── 2010110710492694x.jpg
│   │   ├── 2010110711072106r.jpg
│   │   ├── 2010110711072116n.jpg
│   │   ├── 2010110711072134h.jpg
│   │   ├── 2010110711072144g.jpg
│   │   ├── 2010110711072194y.jpg
│   │   ├── 2010110711250016v.jpg
│   │   ├── 2010110711250022e.jpg
│   │   ├── 2010110711250072m.jpg
│   │   ├── 2010110711250078s.jpg
│   │   ├── 2010110711250098r.jpg
│   │   ├── 2010110711330086h.jpg
│   │   ├── 2010110711330122e.jpg
│   │   ├── 2010110711330126o.jpg
│   │   ├── 2010110711330186k.jpg
│   │   ├── 2010110712490308n.jpg
│   │   ├── 2010110712490348s.jpg
│   │   ├── 2010110712500308d.jpg
│   │   ├── 2010110712500316b.jpg
│   │   ├── 2010110712500322p.jpg
│   │   ├── 2010110712500354q.jpg
│   │   ├── 2010110712500360n.jpg
│   │   └── 2010110712500398u.jpg
│   ├── member
│   │   ├── admin.py
│   │   ├── context_processors.py
│   │   ├── countries.py
│   │   ├── forms.py
│   │   ├── generic.jpg
│   │   ├── __init__.py
│   │   ├── models.py
│   │   ├── profile_settings.py
│   │   ├── profile_settings.py-customize
│   │   ├── templates
│   │   │   └── member
│   │   │   ├── account
│   │   │   │   ├── email_validation_done.html
│   │   │   │   ├── email_validation.html
│   │   │   │   ├── email_validation_processed.html
│   │   │   │   ├── email_validation_reset.html
│   │   │   │   ├── email_validation_reset_response.html
│   │   │   │   ├── login.html
│   │   │   │   ├── logout.html
│   │   │   │   ├── password_change_done.html
│   │   │   │   ├── password_change.html
│   │   │   │   ├── password_expired.html
│   │   │   │   ├── password_reset_complete.html
│   │   │   │   ├── password_reset_confirm.html
│   │   │   │   ├── password_reset_done.html
│   │   │   │   ├── password_reset.html
│   │   │   │   ├── registration_done.html
│   │   │   │   └── registration.html
│   │   │   ├── avatar
│   │   │   │   ├── choose.html
│   │   │   │   ├── crop.html
│   │   │   │   ├── done.html
│   │   │   │   └── search.html
│   │   │   ├── base_2col.html
│   │   │   ├── base.html
│   │   │   ├── email
│   │   │   │   ├── password_reset_email.txt
│   │   │   │   ├── validation_subject.txt
│   │   │   │   └── validation.txt
│   │   │   ├── front.html
│   │   │   ├── index.html
│   │   │   ├── menu.html
│   │   │   ├── profile
│   │   │   │   ├── delete_done.html
│   │   │   │   ├── delete.html
│   │   │   │   ├── location_done.html
│   │   │   │   ├── location.html
│   │   │   │   ├── overview.html
│   │   │   │   ├── personal_done.html
│   │   │   │   ├── personal.html
│   │   │   │   ├── profile_detail.html
│   │   │   │   ├── public.html
│   │   │   │   └── usercard.html
│   │   │   └── profile_detail.html
│   │   ├── templatetags
│   │   │   ├── avatars.original.py
│   │   │   ├── avatars.py
│   │   │   └── __init__.py
│   │   ├── tests.py
│   │   ├── urls
│   │   │   ├── en.py
│   │   │   ├── es.py
│   │   │   └── __init__.py
│   │   ├── urls-backup.py
│   │   ├── utils
│   │   │   ├── decorators.py
│   │   │   └── TuxieMagick.py
│   │   └── views.py
│   ├── navbar
│   │   ├── admin.py
│   │   ├── context_processors.py
│   │   ├── __init__.py
│   │   ├── models.py
│   │   ├── templates
│   │   │   └── navbar
│   │   │   ├── navbar.html
│   │   │   ├── navbars.html
│   │   │   ├── subtree.html
│   │   │   └── tree.html
│   │   ├── templatetags
│   │   │   ├── __init__.py
│   │   │   └── navbar.py
│   │   └── tests.py
│   ├── nb.xml
│   ├── photologue
│   │   ├── admin.py
│   │   ├── __init__.py
│   │   ├── locale
│   │   │   └── pl
│   │   │   └── LC_MESSAGES
│   │   │   ├── django.mo
│   │   │   └── django.po
│   │   ├── management
│   │   │   ├── commands
│   │   │   │   ├── __init__.py
│   │   │   │   ├── plcache.py
│   │   │   │   ├── plcreatesize.py
│   │   │   │   ├── plflush.py
│   │   │   │   └── plinit.py
│   │   │   └── __init__.py
│   │   ├── managers.py
│   │   ├── models.py
│   │   ├── res
│   │   │   ├── sample.jpg
│   │   │   ├── test_landscape.jpg
│   │   │   ├── test_portrait.jpg
│   │   │   └── test_square.jpg
│   │   ├── templates
│   │   │   └── photologue
│   │   │   ├── category_detail.html
│   │   │   ├── gallery_archive_day.html
│   │   │   ├── gallery_archive.html
│   │   │   ├── gallery_archive_month.html
│   │   │   ├── gallery_archive_year.html
│   │   │   ├── gallery_detail.html
│   │   │   ├── gallery_list.html
│   │   │   ├── index.html
│   │   │   ├── photo_archive_day.html
│   │   │   ├── photo_archive.html
│   │   │   ├── photo_archive_month.html
│   │   │   ├── photo_archive_year.html
│   │   │   ├── photo_detail.html
│   │   │   ├── photo_list.html
│   │   │   ├── root.html
│   │   │   └── tags
│   │   │   ├── next_in_gallery.html
│   │   │   └── prev_in_gallery.html
│   │   ├── templatetags
│   │   │   ├── __init__.py
│   │   │   └── photologue_tags.py
│   │   ├── tests.py
│   │   ├── urls.py
│   │   └── utils
│   │   ├── EXIF.py
│   │   ├── __init__.py
│   │   ├── reflection.py
│   │   └── watermark.py
│   ├── plinit.cmd
│   ├── pl.xml
│   ├── run80.cmd
│   ├── run.cmd
│   ├── settings.py
│   ├── shell.cmd
│   ├── tagging
│   │   ├── admin.py
│   │   ├── fields.py
│   │   ├── forms.py
│   │   ├── generic.py
│   │   ├── __init__.py
│   │   ├── managers.py
│   │   ├── models.py
│   │   ├── settings.py
│   │   ├── templatetags
│   │   │   ├── __init__.py
│   │   │   └── tagging_tags.py
│   │   ├── tests
│   │   │   ├── __init__.py
│   │   │   ├── models.py
│   │   │   ├── settings.py
│   │   │   ├── tags.txt
│   │   │   └── tests.py
│   │   ├── urls.py
│   │   ├── utils.py
│   │   └── views.py
│   ├── templates
│   │   ├── 404.html
│   │   ├── 500.html
│   │   ├── admin
│   │   │   ├── base_site.html
│   │   │   └── index.html
│   │   ├── base.html
│   │   ├── blog_base.html
│   │   ├── copyright.html
│   │   ├── flatpages
│   │   │   └── default.html
│   │   ├── flatpages_base.html
│   │   ├── footer.html
│   │   ├── header.html
│   │   ├── index.html
│   │   ├── powered.html
│   │   ├── themes
│   │   │   └── 2010
│   │   │   ├── base.html
│   │   │   ├── header.html
│   │   │   ├── home
│   │   │   │   └── index.html
│   │   │   ├── navbar
│   │   │   │   ├── navbar.html
│   │   │   │   ├── navbars.html
│   │   │   │   ├── subtree.html
│   │   │   │   └── tree.html
│   │   │   ├── news
│   │   │   │   ├── author_list.html
│   │   │   │   ├── category_list.html
│   │   │   │   ├── news_archive_day.html
│   │   │   │   ├── news_archive.html
│   │   │   │   ├── news_archive_month.html
│   │   │   │   ├── news_archive_year.html
│   │   │   │   ├── news_detail.html
│   │   │   │   ├── news_index.html
│   │   │   │   ├── news_list.html
│   │   │   │   ├── news_post.html
│   │   │   │   ├── search.html
│   │   │   │   └── sidebar.html
│   │   │   ├── photologue
│   │   │   │   ├── category_detail.html
│   │   │   │   ├── gallery_archive_day.html
│   │   │   │   ├── gallery_archive.html
│   │   │   │   ├── gallery_archive_month.html
│   │   │   │   ├── gallery_archive_year.html
│   │   │   │   ├── gallery_detail.html
│   │   │   │   ├── gallery_list.html
│   │   │   │   ├── index.html
│   │   │   │   ├── list_files
│   │   │   │   │   ├── 0CA4CKXE3.jpg
│   │   │   │   │   ├── 0CA5Z0XCV.jpg
│   │   │   │   │   ├── 0CA5ZF897.jpg
│   │   │   │   │   ├── 0CA7N3NHR.jpg
│   │   │   │   │   ├── 0CA8T7GO7.jpg
│   │   │   │   │   ├── 0CA8TEJKE.jpg
│   │   │   │   │   ├── 0CA8TU5HH.jpg
│   │   │   │   │   ├── 0CABURJB9.jpg
│   │   │   │   │   ├── 0CACSOCTT.jpg
│   │   │   │   │   ├── 0CADPW8XY.jpg
│   │   │   │   │   ├── 0CAEP30WA.jpg
│   │   │   │   │   ├── 0CAI2EZW8.jpg
│   │   │   │   │   ├── 0CAIAU3IQ.jpg
│   │   │   │   │   ├── 0CAJ4GFXD.jpg
│   │   │   │   │   ├── 0CALKPKIB.jpg
│   │   │   │   │   ├── 0CAM9Y6J2.jpg
│   │   │   │   │   ├── 0CAMAYFX9.jpg
│   │   │   │   │   ├── 0CARKRPTV.jpg
│   │   │   │   │   ├── 0CARMNR2J.jpg
│   │   │   │   │   ├── 0CAUSJXBG.jpg
│   │   │   │   │   ├── 0CAV3VIN5.jpg
│   │   │   │   │   ├── 0CAX3N1RL.jpg
│   │   │   │   │   ├── 0CAXKNDIR.jpg
│   │   │   │   │   ├── 0CAXLFF4W.jpg
│   │   │   │   │   ├── apc.js
│   │   │   │   │   ├── cic_1.js
│   │   │   │   │   ├── class.css
│   │   │   │   │   ├── Command.css
│   │   │   │   │   ├── Command.js
│   │   │   │   │   ├── logo.gif
│   │   │   │   │   ├── tonji.js
│   │   │   │   │   └── ZCoriginality.js
│   │   │   │   ├── photo_archive_day.html
│   │   │   │   ├── photo_archive.html
│   │   │   │   ├── photo_archive_month.html
│   │   │   │   ├── photo_archive_year.html
│   │   │   │   ├── photo_detail.html
│   │   │   │   ├── photo_list.html
│   │   │   │   ├── root.html
│   │   │   │   └── tags
│   │   │   │   ├── next_in_gallery.html
│   │   │   │   └── prev_in_gallery.html
│   │   │   └── tags
│   │   │   ├── next_in_gallery.html
│   │   │   └── prev_in_gallery.html
│   │   └── top_nav.html
│   ├── urls.py
│   └── utils
│   ├── __init__.py
│   └── uploadfile.py
├── 网站模板介绍副本.jpg
└── 说明.txt

76 directories, 409 files

标签:

实例下载地址

Django框架 实例 项目

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

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

网友评论

发表评论

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

查看所有0条评论>>

小贴士

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

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

关于好例子网

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

;
报警