实例介绍
姜斯图 Django框架实现学生信息管理系统 [视频链接]!( ) 总体概述 注册流程 首先进行输入用户名(邮箱),密码以及验证码,输入完之后点击注册按钮。如果输入的不正确,提示错误信息。 如果一切信息填充正确无误,调用STMP模块发送激活邮件,用户必须要点击接收到邮箱链接,进行邮件激活后才方可登陆。 即使注册成功,没有激活的用户也不能登陆,用户以get的方式直接重定向到注册页面。 注册号: 用户能在系统中进行登陆注册和忘记密码进行找回的功能。 个人中心:修改头像,修改密码,修改邮箱,可以看到我的信息。 日志记录: 记录后台人员的操作,方便发现BUG和查看初始调用进行时间。 导航栏:学生信息中有基本信息,年级及成绩信息的模块,能够排序筛选等功能。 多选操作: 可以选择多条记录进行删除操作,还可以在课程列表页面可以对不同课程进行排序。 数据页码: 可以设置相应数据在每一页中显示的数量多少,
【实例截图】
【核心代码】
16359647576984155495.zip
└── Django-Stu-master
├── README.md
├── requirements.txt
└── 学生信息管理系统
├── apps
│ ├── course
│ │ ├── admin.py
│ │ ├── adminx.py
│ │ ├── apps.py
│ │ ├── __init__.py
│ │ ├── migrations
│ │ │ ├── 0001_initial.py
│ │ │ ├── 0002_course_course_org.py
│ │ │ ├── 0003_course_category.py
│ │ │ ├── 0004_course_tag.py
│ │ │ ├── 0005_video_url.py
│ │ │ ├── 0006_video_learn_times.py
│ │ │ ├── 0007_course_teacher.py
│ │ │ ├── 0008_auto_20180326_2313.py
│ │ │ ├── 0009_course_is_banner.py
│ │ │ ├── 0010_auto_20180331_2005.py
│ │ │ ├── __init__.py
│ │ │ └── __pycache__
│ │ │ ├── 0001_initial.cpython-36.pyc
│ │ │ ├── 0002_course_course_org.cpython-36.pyc
│ │ │ ├── 0003_course_category.cpython-36.pyc
│ │ │ ├── 0004_course_tag.cpython-36.pyc
│ │ │ ├── 0005_video_url.cpython-36.pyc
│ │ │ ├── 0006_video_learn_times.cpython-36.pyc
│ │ │ ├── 0007_course_teacher.cpython-36.pyc
│ │ │ ├── 0008_auto_20180326_2313.cpython-36.pyc
│ │ │ ├── 0009_course_is_banner.cpython-36.pyc
│ │ │ ├── 0010_auto_20180331_2005.cpython-36.pyc
│ │ │ └── __init__.cpython-36.pyc
│ │ ├── models.py
│ │ ├── __pycache__
│ │ │ ├── admin.cpython-36.pyc
│ │ │ ├── adminx.cpython-36.pyc
│ │ │ ├── apps.cpython-36.pyc
│ │ │ ├── __init__.cpython-36.pyc
│ │ │ ├── models.cpython-36.pyc
│ │ │ ├── urls.cpython-36.pyc
│ │ │ └── views.cpython-36.pyc
│ │ ├── tests.py
│ │ ├── urls.py
│ │ └── views.py
│ ├── __init__.py
│ ├── myApp
│ │ ├── adminx.py
│ │ ├── apps.py
│ │ ├── __init__.py
│ │ ├── middleware.py
│ │ ├── migrations
│ │ │ ├── 0001_initial.py
│ │ │ ├── 0002_auto_20190503_2158.py
│ │ │ ├── 0003_auto_20190511_1608.py
│ │ │ ├── 0004_score.py
│ │ │ ├── 0005_score_name.py
│ │ │ ├── __init__.py
│ │ │ └── __pycache__
│ │ │ ├── 0001_initial.cpython-36.pyc
│ │ │ ├── 0002_auto_20190503_2158.cpython-36.pyc
│ │ │ ├── 0003_auto_20190511_1608.cpython-36.pyc
│ │ │ ├── 0004_score.cpython-36.pyc
│ │ │ ├── 0005_score_name.cpython-36.pyc
│ │ │ └── __init__.cpython-36.pyc
│ │ ├── models.py
│ │ ├── __pycache__
│ │ │ ├── adminx.cpython-36.pyc
│ │ │ ├── apps.cpython-36.pyc
│ │ │ ├── __init__.cpython-36.pyc
│ │ │ └── models.cpython-36.pyc
│ │ ├── tests.py
│ │ ├── urls.py
│ │ └── views.py
│ ├── operation
│ │ ├── admin.py
│ │ ├── adminx.py
│ │ ├── apps.py
│ │ ├── __init__.py
│ │ ├── migrations
│ │ │ ├── 0001_initial.py
│ │ │ ├── __init__.py
│ │ │ └── __pycache__
│ │ │ ├── 0001_initial.cpython-36.pyc
│ │ │ └── __init__.cpython-36.pyc
│ │ ├── models.py
│ │ ├── __pycache__
│ │ │ ├── admin.cpython-36.pyc
│ │ │ ├── adminx.cpython-36.pyc
│ │ │ ├── apps.cpython-36.pyc
│ │ │ ├── __init__.cpython-36.pyc
│ │ │ └── models.cpython-36.pyc
│ │ ├── tests.py
│ │ └── views.py
│ ├── organization
│ │ ├── admin.py
│ │ ├── adminx.py
│ │ ├── apps.py
│ │ ├── forms.py
│ │ ├── __init__.py
│ │ ├── migrations
│ │ │ ├── 0001_initial.py
│ │ │ ├── 0002_auto_20180324_1214.py
│ │ │ ├── 0003_auto_20180324_1250.py
│ │ │ ├── 0004_auto_20180324_1645.py
│ │ │ ├── 0005_teacher_image.py
│ │ │ ├── 0006_teacher_teacher_age.py
│ │ │ ├── 0007_courseorg_tag.py
│ │ │ ├── __init__.py
│ │ │ └── __pycache__
│ │ │ ├── 0001_initial.cpython-36.pyc
│ │ │ ├── 0002_auto_20180324_1214.cpython-36.pyc
│ │ │ ├── 0003_auto_20180324_1250.cpython-36.pyc
│ │ │ ├── 0004_auto_20180324_1645.cpython-36.pyc
│ │ │ ├── 0005_teacher_image.cpython-36.pyc
│ │ │ ├── 0006_teacher_teacher_age.cpython-36.pyc
│ │ │ ├── 0007_courseorg_tag.cpython-36.pyc
│ │ │ └── __init__.cpython-36.pyc
│ │ ├── models.py
│ │ ├── __pycache__
│ │ │ ├── admin.cpython-36.pyc
│ │ │ ├── adminx.cpython-36.pyc
│ │ │ ├── apps.cpython-36.pyc
│ │ │ ├── forms.cpython-36.pyc
│ │ │ ├── __init__.cpython-36.pyc
│ │ │ ├── models.cpython-36.pyc
│ │ │ ├── urls.cpython-36.pyc
│ │ │ └── views.cpython-36.pyc
│ │ ├── tests.py
│ │ ├── urls.py
│ │ └── views.py
│ ├── users
│ │ ├── admin.py
│ │ ├── adminx.py
│ │ ├── apps.py
│ │ ├── forms.py
│ │ ├── __init__.py
│ │ ├── migrations
│ │ │ ├── 0001_initial.py
│ │ │ ├── 0002_auto_20180330_1736.py
│ │ │ ├── __init__.py
│ │ │ └── __pycache__
│ │ │ ├── 0001_initial.cpython-36.pyc
│ │ │ ├── 0002_auto_20180330_1736.cpython-36.pyc
│ │ │ └── __init__.cpython-36.pyc
│ │ ├── models.py
│ │ ├── __pycache__
│ │ │ ├── admin.cpython-36.pyc
│ │ │ ├── adminx.cpython-36.pyc
│ │ │ ├── apps.cpython-36.pyc
│ │ │ ├── forms.cpython-36.pyc
│ │ │ ├── __init__.cpython-36.pyc
│ │ │ ├── models.cpython-36.pyc
│ │ │ ├── urls.cpython-36.pyc
│ │ │ └── views.cpython-36.pyc
│ │ ├── tests.py
│ │ ├── urls.py
│ │ └── views.py
│ └── utils
│ ├── email_send.py
│ ├── __init__.py
│ ├── mixin_utils.py
│ └── __pycache__
│ ├── email_send.cpython-36.pyc
│ ├── __init__.cpython-36.pyc
│ └── mixin_utils.cpython-36.pyc
├── DjangoUeditor
│ ├── adminx.py
│ ├── commands.py
│ ├── forms.py
│ ├── __init__.py
│ ├── models.py
│ ├── __pycache__
│ │ ├── adminx.cpython-36.pyc
│ │ ├── commands.cpython-36.pyc
│ │ ├── __init__.cpython-36.pyc
│ │ ├── models.cpython-36.pyc
│ │ ├── settings.cpython-36.pyc
│ │ ├── urls.cpython-36.pyc
│ │ ├── utils.cpython-36.pyc
│ │ ├── views.cpython-36.pyc
│ │ └── widgets.cpython-36.pyc
│ ├── readme.txt
│ ├── settings.py
│ ├── static
│ │ └── ueditor
│ │ ├── dialogs
│ │ │ ├── anchor
│ │ │ │ └── anchor.html
│ │ │ ├── attachment
│ │ │ │ ├── attachment.css
│ │ │ │ ├── attachment.html
│ │ │ │ ├── attachment.js
│ │ │ │ ├── fileTypeImages
│ │ │ │ │ ├── icon_chm.gif
│ │ │ │ │ ├── icon_default.png
│ │ │ │ │ ├── icon_doc.gif
│ │ │ │ │ ├── icon_exe.gif
│ │ │ │ │ ├── icon_jpg.gif
│ │ │ │ │ ├── icon_mp3.gif
│ │ │ │ │ ├── icon_mv.gif
│ │ │ │ │ ├── icon_pdf.gif
│ │ │ │ │ ├── icon_ppt.gif
│ │ │ │ │ ├── icon_psd.gif
│ │ │ │ │ ├── icon_rar.gif
│ │ │ │ │ ├── icon_txt.gif
│ │ │ │ │ └── icon_xls.gif
│ │ │ │ └── images
│ │ │ │ ├── alignicon.gif
│ │ │ │ ├── alignicon.png
│ │ │ │ ├── bg.png
│ │ │ │ ├── file-icons.gif
│ │ │ │ ├── file-icons.png
│ │ │ │ ├── icons.gif
│ │ │ │ ├── icons.png
│ │ │ │ ├── image.png
│ │ │ │ ├── progress.png
│ │ │ │ ├── success.gif
│ │ │ │ └── success.png
│ │ │ ├── background
│ │ │ │ ├── background.css
│ │ │ │ ├── background.html
│ │ │ │ ├── background.js
│ │ │ │ └── images
│ │ │ │ ├── bg.png
│ │ │ │ └── success.png
│ │ │ ├── charts
│ │ │ │ ├── chart.config.js
│ │ │ │ ├── charts.css
│ │ │ │ ├── charts.html
│ │ │ │ ├── charts.js
│ │ │ │ └── images
│ │ │ │ ├── charts0.png
│ │ │ │ ├── charts1.png
│ │ │ │ ├── charts2.png
│ │ │ │ ├── charts3.png
│ │ │ │ ├── charts4.png
│ │ │ │ └── charts5.png
│ │ │ ├── emotion
│ │ │ │ ├── emotion.css
│ │ │ │ ├── emotion.html
│ │ │ │ ├── emotion.js
│ │ │ │ └── images
│ │ │ │ ├── 0.gif
│ │ │ │ ├── bface.gif
│ │ │ │ ├── cface.gif
│ │ │ │ ├── fface.gif
│ │ │ │ ├── jxface2.gif
│ │ │ │ ├── neweditor-tab-bg.png
│ │ │ │ ├── tface.gif
│ │ │ │ ├── wface.gif
│ │ │ │ └── yface.gif
│ │ │ ├── gmap
│ │ │ │ └── gmap.html
│ │ │ ├── help
│ │ │ │ ├── help.css
│ │ │ │ ├── help.html
│ │ │ │ └── help.js
│ │ │ ├── image
│ │ │ │ ├── image.css
│ │ │ │ ├── image.html
│ │ │ │ ├── image.js
│ │ │ │ └── images
│ │ │ │ ├── alignicon.jpg
│ │ │ │ ├── bg.png
│ │ │ │ ├── icons.gif
│ │ │ │ ├── icons.png
│ │ │ │ ├── image.png
│ │ │ │ ├── progress.png
│ │ │ │ ├── success.gif
│ │ │ │ └── success.png
│ │ │ ├── insertframe
│ │ │ │ └── insertframe.html
│ │ │ ├── internal.js
│ │ │ ├── link
│ │ │ │ └── link.html
│ │ │ ├── map
│ │ │ │ ├── map.html
│ │ │ │ └── show.html
│ │ │ ├── music
│ │ │ │ ├── music.css
│ │ │ │ ├── music.html
│ │ │ │ └── music.js
│ │ │ ├── preview
│ │ │ │ └── preview.html
│ │ │ ├── scrawl
│ │ │ │ ├── images
│ │ │ │ │ ├── addimg.png
│ │ │ │ │ ├── brush.png
│ │ │ │ │ ├── delimgH.png
│ │ │ │ │ ├── delimg.png
│ │ │ │ │ ├── emptyH.png
│ │ │ │ │ ├── empty.png
│ │ │ │ │ ├── eraser.png
│ │ │ │ │ ├── redoH.png
│ │ │ │ │ ├── redo.png
│ │ │ │ │ ├── scaleH.png
│ │ │ │ │ ├── scale.png
│ │ │ │ │ ├── size.png
│ │ │ │ │ ├── undoH.png
│ │ │ │ │ └── undo.png
│ │ │ │ ├── scrawl.css
│ │ │ │ ├── scrawl.html
│ │ │ │ └── scrawl.js
│ │ │ ├── searchreplace
│ │ │ │ ├── searchreplace.html
│ │ │ │ └── searchreplace.js
│ │ │ ├── snapscreen
│ │ │ │ └── snapscreen.html
│ │ │ ├── spechars
│ │ │ │ ├── spechars.html
│ │ │ │ └── spechars.js
│ │ │ ├── table
│ │ │ │ ├── dragicon.png
│ │ │ │ ├── edittable.css
│ │ │ │ ├── edittable.html
│ │ │ │ ├── edittable.js
│ │ │ │ ├── edittd.html
│ │ │ │ └── edittip.html
│ │ │ ├── template
│ │ │ │ ├── config.js
│ │ │ │ ├── images
│ │ │ │ │ ├── bg.gif
│ │ │ │ │ ├── pre0.png
│ │ │ │ │ ├── pre1.png
│ │ │ │ │ ├── pre2.png
│ │ │ │ │ ├── pre3.png
│ │ │ │ │ └── pre4.png
│ │ │ │ ├── template.css
│ │ │ │ ├── template.html
│ │ │ │ └── template.js
│ │ │ ├── video
│ │ │ │ ├── images
│ │ │ │ │ ├── bg.png
│ │ │ │ │ ├── center_focus.jpg
│ │ │ │ │ ├── file-icons.gif
│ │ │ │ │ ├── file-icons.png
│ │ │ │ │ ├── icons.gif
│ │ │ │ │ ├── icons.png
│ │ │ │ │ ├── image.png
│ │ │ │ │ ├── left_focus.jpg
│ │ │ │ │ ├── none_focus.jpg
│ │ │ │ │ ├── progress.png
│ │ │ │ │ ├── right_focus.jpg
│ │ │ │ │ ├── success.gif
│ │ │ │ │ └── success.png
│ │ │ │ ├── video.css
│ │ │ │ ├── video.html
│ │ │ │ └── video.js
│ │ │ ├── webapp
│ │ │ │ └── webapp.html
│ │ │ └── wordimage
│ │ │ ├── fClipboard_ueditor.swf
│ │ │ ├── imageUploader.swf
│ │ │ ├── tangram.js
│ │ │ ├── wordimage.html
│ │ │ └── wordimage.js
│ │ ├── _examples
│ │ │ ├── addCustomizeButton.js
│ │ │ ├── addCustomizeCombox.js
│ │ │ ├── addCustomizeDialog.js
│ │ │ ├── charts.html
│ │ │ ├── completeDemo.html
│ │ │ ├── customizeDialogPage.html
│ │ │ ├── customizeToolbarUIDemo.html
│ │ │ ├── customPluginDemo.html
│ │ │ ├── customToolbarDemo.html
│ │ │ ├── editor_api.js
│ │ │ ├── filterRuleDemo.html
│ │ │ ├── highlightDemo.html
│ │ │ ├── index.html
│ │ │ ├── jqueryCompleteDemo.html
│ │ │ ├── jqueryValidation.html
│ │ │ ├── multiDemo.html
│ │ │ ├── multiEditorWithOneInstance.html
│ │ │ ├── renderInTable.html
│ │ │ ├── resetDemo.html
│ │ │ ├── sectiondemo.html
│ │ │ ├── server
│ │ │ │ ├── getContent.ashx
│ │ │ │ ├── getContent.asp
│ │ │ │ ├── getContent.jsp
│ │ │ │ └── getContent.php
│ │ │ ├── setWidthHeightDemo.html
│ │ │ ├── simpleDemo.html
│ │ │ ├── sortableDemo.html
│ │ │ ├── submitFormDemo.html
│ │ │ ├── textareaDemo.html
│ │ │ └── uparsedemo.html
│ │ ├── index.html
│ │ ├── lang
│ │ │ ├── en
│ │ │ │ ├── en.js
│ │ │ │ └── images
│ │ │ │ ├── addimage.png
│ │ │ │ ├── alldeletebtnhoverskin.png
│ │ │ │ ├── alldeletebtnupskin.png
│ │ │ │ ├── background.png
│ │ │ │ ├── button.png
│ │ │ │ ├── copy.png
│ │ │ │ ├── deletedisable.png
│ │ │ │ ├── deleteenable.png
│ │ │ │ ├── listbackground.png
│ │ │ │ ├── localimage.png
│ │ │ │ ├── music.png
│ │ │ │ ├── rotateleftdisable.png
│ │ │ │ ├── rotateleftenable.png
│ │ │ │ ├── rotaterightdisable.png
│ │ │ │ ├── rotaterightenable.png
│ │ │ │ └── upload.png
│ │ │ └── zh-cn
│ │ │ ├── images
│ │ │ │ ├── copy.png
│ │ │ │ ├── localimage.png
│ │ │ │ ├── music.png
│ │ │ │ └── upload.png
│ │ │ └── zh-cn.js
│ │ ├── php
│ │ │ ├── action_crawler.php
│ │ │ ├── action_list.php
│ │ │ ├── action_upload.php
│ │ │ ├── config.json
│ │ │ ├── controller.php
│ │ │ └── Uploader.class.php
│ │ ├── themes
│ │ │ ├── default
│ │ │ │ ├── css
│ │ │ │ │ ├── ueditor.css
│ │ │ │ │ └── ueditor.min.css
│ │ │ │ ├── dialogbase.css
│ │ │ │ └── images
│ │ │ │ ├── anchor.gif
│ │ │ │ ├── arrow_down.png
│ │ │ │ ├── arrow.png
│ │ │ │ ├── arrow_up.png
│ │ │ │ ├── button-bg.gif
│ │ │ │ ├── cancelbutton.gif
│ │ │ │ ├── charts.png
│ │ │ │ ├── cursor_h.gif
│ │ │ │ ├── cursor_h.png
│ │ │ │ ├── cursor_v.gif
│ │ │ │ ├── cursor_v.png
│ │ │ │ ├── dialog-title-bg.png
│ │ │ │ ├── fileScan.png
│ │ │ │ ├── highlighted.gif
│ │ │ │ ├── icons-all.gif
│ │ │ │ ├── icons.gif
│ │ │ │ ├── icons.png
│ │ │ │ ├── loaderror.png
│ │ │ │ ├── loading.gif
│ │ │ │ ├── lock.gif
│ │ │ │ ├── neweditor-tab-bg.png
│ │ │ │ ├── pagebreak.gif
│ │ │ │ ├── scale.png
│ │ │ │ ├── sortable.png
│ │ │ │ ├── spacer.gif
│ │ │ │ ├── sparator_v.png
│ │ │ │ ├── table-cell-align.png
│ │ │ │ ├── tangram-colorpicker.png
│ │ │ │ ├── toolbar_bg.png
│ │ │ │ ├── unhighlighted.gif
│ │ │ │ ├── upload.png
│ │ │ │ ├── videologo.gif
│ │ │ │ ├── word.gif
│ │ │ │ └── wordpaste.png
│ │ │ └── iframe.css
│ │ ├── third-party
│ │ │ ├── codemirror
│ │ │ │ ├── codemirror.css
│ │ │ │ └── codemirror.js
│ │ │ ├── highcharts
│ │ │ │ ├── adapters
│ │ │ │ │ ├── mootools-adapter.js
│ │ │ │ │ ├── mootools-adapter.src.js
│ │ │ │ │ ├── prototype-adapter.js
│ │ │ │ │ ├── prototype-adapter.src.js
│ │ │ │ │ ├── standalone-framework.js
│ │ │ │ │ └── standalone-framework.src.js
│ │ │ │ ├── highcharts.js
│ │ │ │ ├── highcharts-more.js
│ │ │ │ ├── highcharts-more.src.js
│ │ │ │ ├── highcharts.src.js
│ │ │ │ ├── modules
│ │ │ │ │ ├── annotations.js
│ │ │ │ │ ├── annotations.src.js
│ │ │ │ │ ├── canvas-tools.js
│ │ │ │ │ ├── canvas-tools.src.js
│ │ │ │ │ ├── data.js
│ │ │ │ │ ├── data.src.js
│ │ │ │ │ ├── drilldown.js
│ │ │ │ │ ├── drilldown.src.js
│ │ │ │ │ ├── exporting.js
│ │ │ │ │ ├── exporting.src.js
│ │ │ │ │ ├── funnel.js
│ │ │ │ │ ├── funnel.src.js
│ │ │ │ │ ├── heatmap.js
│ │ │ │ │ ├── heatmap.src.js
│ │ │ │ │ ├── map.js
│ │ │ │ │ ├── map.src.js
│ │ │ │ │ ├── no-data-to-display.js
│ │ │ │ │ └── no-data-to-display.src.js
│ │ │ │ └── themes
│ │ │ │ ├── dark-blue.js
│ │ │ │ ├── dark-green.js
│ │ │ │ ├── gray.js
│ │ │ │ ├── grid.js
│ │ │ │ └── skies.js
│ │ │ ├── jquery-1.10.2.js
│ │ │ ├── jquery-1.10.2.min.js
│ │ │ ├── jquery-1.10.2.min.map
│ │ │ ├── snapscreen
│ │ │ │ └── UEditorSnapscreen.exe
│ │ │ ├── SyntaxHighlighter
│ │ │ │ ├── shCoreDefault.css
│ │ │ │ └── shCore.js
│ │ │ ├── video-js
│ │ │ │ ├── font
│ │ │ │ │ ├── vjs.eot
│ │ │ │ │ ├── vjs.svg
│ │ │ │ │ ├── vjs.ttf
│ │ │ │ │ └── vjs.woff
│ │ │ │ ├── video.dev.js
│ │ │ │ ├── video.js
│ │ │ │ ├── video-js.css
│ │ │ │ ├── video-js.min.css
│ │ │ │ └── video-js.swf
│ │ │ ├── webuploader
│ │ │ │ ├── Uploader.swf
│ │ │ │ ├── webuploader.css
│ │ │ │ ├── webuploader.custom.js
│ │ │ │ ├── webuploader.custom.min.js
│ │ │ │ ├── webuploader.flashonly.js
│ │ │ │ ├── webuploader.flashonly.min.js
│ │ │ │ ├── webuploader.html5only.js
│ │ │ │ ├── webuploader.html5only.min.js
│ │ │ │ ├── webuploader.js
│ │ │ │ ├── webuploader.min.js
│ │ │ │ ├── webuploader.withoutimage.js
│ │ │ │ └── webuploader.withoutimage.min.js
│ │ │ └── zeroclipboard
│ │ │ ├── ZeroClipboard.js
│ │ │ ├── ZeroClipboard.min.js
│ │ │ └── ZeroClipboard.swf
│ │ ├── ueditor.all.js
│ │ ├── ueditor.all.min.js
│ │ ├── ueditor.config.js
│ │ ├── ueditor.parse.js
│ │ ├── ueditor.parse.min.js
│ │ └── UEditorSnapscreen.exe
│ ├── templates
│ │ ├── ueditor.html
│ │ └── ueditor_old.html
│ ├── urls.py
│ ├── utils.py
│ ├── views.py
│ └── widgets.py
├── extra_apps
│ ├── __init__.py
│ └── xadmin
│ ├── adminx.py
│ ├── apps.py
│ ├── filters.py
│ ├── forms.py
│ ├── __init__.py
│ ├── layout.py
│ ├── locale
│ │ ├── de_DE
│ │ │ └── LC_MESSAGES
│ │ │ ├── djangojs.mo
│ │ │ ├── djangojs.po
│ │ │ ├── django.mo
│ │ │ └── django.po
│ │ ├── en
│ │ │ └── LC_MESSAGES
│ │ │ ├── djangojs.mo
│ │ │ ├── djangojs.po
│ │ │ ├── django.mo
│ │ │ └── django.po
│ │ ├── es_MX
│ │ │ └── LC_MESSAGES
│ │ │ ├── djangojs.mo
│ │ │ ├── djangojs.po
│ │ │ ├── django.mo
│ │ │ └── django.po
│ │ ├── eu
│ │ │ └── LC_MESSAGES
│ │ │ ├── djangojs.mo
│ │ │ ├── djangojs.po
│ │ │ ├── django.mo
│ │ │ └── django.po
│ │ ├── id_ID
│ │ │ └── LC_MESSAGES
│ │ │ ├── djangojs.mo
│ │ │ ├── djangojs.po
│ │ │ ├── django.mo
│ │ │ └── django.po
│ │ ├── ja
│ │ │ └── LC_MESSAGES
│ │ │ ├── djangojs.mo
│ │ │ ├── djangojs.po
│ │ │ ├── django.mo
│ │ │ └── django.po
│ │ ├── lt
│ │ │ └── LC_MESSAGES
│ │ │ ├── djangojs.mo
│ │ │ ├── djangojs.po
│ │ │ ├── django.mo
│ │ │ └── django.po
│ │ ├── nl_NL
│ │ │ └── LC_MESSAGES
│ │ │ ├── djangojs.mo
│ │ │ ├── djangojs.po
│ │ │ ├── django.mo
│ │ │ └── django.po
│ │ ├── pl
│ │ │ └── LC_MESSAGES
│ │ │ ├── djangojs.mo
│ │ │ ├── djangojs.po
│ │ │ ├── django.mo
│ │ │ └── django.po
│ │ ├── pt_BR
│ │ │ └── LC_MESSAGES
│ │ │ ├── djangojs.mo
│ │ │ ├── djangojs.po
│ │ │ ├── django.mo
│ │ │ └── django.po
│ │ ├── ru_RU
│ │ │ └── LC_MESSAGES
│ │ │ ├── djangojs.mo
│ │ │ ├── djangojs.po
│ │ │ ├── django.mo
│ │ │ └── django.po
│ │ └── zh_Hans
│ │ └── LC_MESSAGES
│ │ ├── djangojs.mo
│ │ ├── djangojs.po
│ │ ├── django.mo
│ │ └── django.po
│ ├── migrations
│ │ ├── 0001_initial.py
│ │ ├── 0002_log.py
│ │ ├── 0003_auto_20160715_0100.py
│ │ ├── __init__.py
│ │ └── __pycache__
│ │ ├── 0001_initial.cpython-36.pyc
│ │ ├── 0002_log.cpython-36.pyc
│ │ ├── 0003_auto_20160715_0100.cpython-36.pyc
│ │ └── __init__.cpython-36.pyc
│ ├── models.py
│ ├── plugins
│ │ ├── actions.py
│ │ ├── aggregation.py
│ │ ├── ajax.py
│ │ ├── auth.py
│ │ ├── batch.py
│ │ ├── bookmark.py
│ │ ├── chart.py
│ │ ├── comments.py
│ │ ├── details.py
│ │ ├── editable.py
│ │ ├── export.py
│ │ ├── filters.py
│ │ ├── images.py
│ │ ├── importexport.py
│ │ ├── __init__.py
│ │ ├── inline.py
│ │ ├── language.py
│ │ ├── layout.py
│ │ ├── mobile.py
│ │ ├── multiselect.py
│ │ ├── passwords.py
│ │ ├── portal.py
│ │ ├── __pycache__
│ │ │ ├── actions.cpython-36.pyc
│ │ │ ├── aggregation.cpython-36.pyc
│ │ │ ├── ajax.cpython-36.pyc
│ │ │ ├── auth.cpython-36.pyc
│ │ │ ├── batch.cpython-36.pyc
│ │ │ ├── bookmark.cpython-36.pyc
│ │ │ ├── chart.cpython-36.pyc
│ │ │ ├── details.cpython-36.pyc
│ │ │ ├── editable.cpython-36.pyc
│ │ │ ├── export.cpython-36.pyc
│ │ │ ├── filters.cpython-36.pyc
│ │ │ ├── images.cpython-36.pyc
│ │ │ ├── importexport.cpython-36.pyc
│ │ │ ├── __init__.cpython-36.pyc
│ │ │ ├── inline.cpython-36.pyc
│ │ │ ├── language.cpython-36.pyc
│ │ │ ├── layout.cpython-36.pyc
│ │ │ ├── multiselect.cpython-36.pyc
│ │ │ ├── passwords.cpython-36.pyc
│ │ │ ├── portal.cpython-36.pyc
│ │ │ ├── quickfilter.cpython-36.pyc
│ │ │ ├── quickform.cpython-36.pyc
│ │ │ ├── refresh.cpython-36.pyc
│ │ │ ├── relate.cpython-36.pyc
│ │ │ ├── relfield.cpython-36.pyc
│ │ │ ├── sitemenu.cpython-36.pyc
│ │ │ ├── sortablelist.cpython-36.pyc
│ │ │ ├── themes.cpython-36.pyc
│ │ │ ├── topnav.cpython-36.pyc
│ │ │ ├── ueditor.cpython-36.pyc
│ │ │ ├── utils.cpython-36.pyc
│ │ │ └── wizard.cpython-36.pyc
│ │ ├── quickfilter.py
│ │ ├── quickform.py
│ │ ├── refresh.py
│ │ ├── relate.py
│ │ ├── relfield.py
│ │ ├── sitemenu.py
│ │ ├── sortablelist.py
│ │ ├── themes.py
│ │ ├── topnav.py
│ │ ├── ueditor.py
│ │ ├── utils.py
│ │ ├── wizard.py
│ │ └── xversion.py
│ ├── __pycache__
│ │ ├── adminx.cpython-36.pyc
│ │ ├── apps.cpython-36.pyc
│ │ ├── filters.cpython-36.pyc
│ │ ├── forms.cpython-36.pyc
│ │ ├── __init__.cpython-36.pyc
│ │ ├── layout.cpython-36.pyc
│ │ ├── models.cpython-36.pyc
│ │ ├── sites.cpython-36.pyc
│ │ ├── util.cpython-36.pyc
│ │ ├── vendors.cpython-36.pyc
│ │ └── widgets.cpython-36.pyc
│ ├── sites.py
│ ├── static
│ │ └── xadmin
│ │ ├── component.json
│ │ ├── css
│ │ │ ├── themes
│ │ │ │ ├── bootstrap-theme.css
│ │ │ │ ├── bootstrap-theme.min.css
│ │ │ │ └── bootstrap-xadmin.css
│ │ │ ├── xadmin.form.css
│ │ │ ├── xadmin.main.css
│ │ │ ├── xadmin.mobile.css
│ │ │ ├── xadmin.page.dashboard.css
│ │ │ ├── xadmin.plugin.aggregation.css
│ │ │ ├── xadmin.plugin.formset.css
│ │ │ ├── xadmin.plugin.importexport.css
│ │ │ ├── xadmin.plugin.quickfilter.css
│ │ │ ├── xadmin.plugins.css
│ │ │ ├── xadmin.responsive.css
│ │ │ ├── xadmin.widget.editable.css
│ │ │ └── xadmin.widget.select-transfer.css
│ │ ├── js
│ │ │ ├── xadmin.main.js
│ │ │ ├── xadmin.page.dashboard.js
│ │ │ ├── xadmin.page.form.js
│ │ │ ├── xadmin.page.list.js
│ │ │ ├── xadmin.plugin.actions.js
│ │ │ ├── xadmin.plugin.batch.js
│ │ │ ├── xadmin.plugin.bookmark.js
│ │ │ ├── xadmin.plugin.charts.js
│ │ │ ├── xadmin.plugin.details.js
│ │ │ ├── xadmin.plugin.editable.js
│ │ │ ├── xadmin.plugin.filters.js
│ │ │ ├── xadmin.plugin.formset.js
│ │ │ ├── xadmin.plugin.importexport.js
│ │ │ ├── xadmin.plugin.portal.js
│ │ │ ├── xadmin.plugin.quickfilter.js
│ │ │ ├── xadmin.plugin.quick-form.js
│ │ │ ├── xadmin.plugin.refresh.js
│ │ │ ├── xadmin.plugin.revision.js
│ │ │ ├── xadmin.plugin.sortablelist.js
│ │ │ ├── xadmin.plugin.themes.js
│ │ │ ├── xadmin.responsive.js
│ │ │ ├── xadmin.widget.datetime.js
│ │ │ ├── xadmin.widget.multiselect.js
│ │ │ ├── xadmin.widget.select.js
│ │ │ └── xadmin.widget.select-transfer.js
│ │ └── vendor
│ │ ├── autotype
│ │ │ └── index.js
│ │ ├── bootstrap
│ │ │ ├── css
│ │ │ │ ├── bootstrap.css
│ │ │ │ └── bootstrap.min.css
│ │ │ ├── fonts
│ │ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ │ ├── glyphicons-halflings-regular.svg
│ │ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ │ └── glyphicons-halflings-regular.woff
│ │ │ └── js
│ │ │ ├── bootstrap.js
│ │ │ └── bootstrap.min.js
│ │ ├── bootstrap-clockpicker
│ │ │ ├── bootstrap-clockpicker.css
│ │ │ ├── bootstrap-clockpicker.js
│ │ │ ├── bootstrap-clockpicker.min.css
│ │ │ └── bootstrap-clockpicker.min.js
│ │ ├── bootstrap-datepicker
│ │ │ ├── css
│ │ │ │ └── datepicker.css
│ │ │ └── js
│ │ │ ├── bootstrap-datepicker.js
│ │ │ └── locales
│ │ │ ├── bootstrap-datepicker.bg.js
│ │ │ ├── bootstrap-datepicker.ca.js
│ │ │ ├── bootstrap-datepicker.cs.js
│ │ │ ├── bootstrap-datepicker.da.js
│ │ │ ├── bootstrap-datepicker.de.js
│ │ │ ├── bootstrap-datepicker.el.js
│ │ │ ├── bootstrap-datepicker.es.js
│ │ │ ├── bootstrap-datepicker.fi.js
│ │ │ ├── bootstrap-datepicker.fr.js
│ │ │ ├── bootstrap-datepicker.he.js
│ │ │ ├── bootstrap-datepicker.hr.js
│ │ │ ├── bootstrap-datepicker.hu.js
│ │ │ ├── bootstrap-datepicker.id.js
│ │ │ ├── bootstrap-datepicker.is.js
│ │ │ ├── bootstrap-datepicker.it.js
│ │ │ ├── bootstrap-datepicker.ja.js
│ │ │ ├── bootstrap-datepicker.kr.js
│ │ │ ├── bootstrap-datepicker.lt.js
│ │ │ ├── bootstrap-datepicker.lv.js
│ │ │ ├── bootstrap-datepicker.ms.js
│ │ │ ├── bootstrap-datepicker.nb.js
│ │ │ ├── bootstrap-datepicker.nl.js
│ │ │ ├── bootstrap-datepicker.pl.js
│ │ │ ├── bootstrap-datepicker.pt-BR.js
│ │ │ ├── bootstrap-datepicker.pt.js
│ │ │ ├── bootstrap-datepicker.ro.js
│ │ │ ├── bootstrap-datepicker.rs.js
│ │ │ ├── bootstrap-datepicker.rs-latin.js
│ │ │ ├── bootstrap-datepicker.ru.js
│ │ │ ├── bootstrap-datepicker.sk.js
│ │ │ ├── bootstrap-datepicker.sl.js
│ │ │ ├── bootstrap-datepicker.sv.js
│ │ │ ├── bootstrap-datepicker.sw.js
│ │ │ ├── bootstrap-datepicker.th.js
│ │ │ ├── bootstrap-datepicker.tr.js
│ │ │ ├── bootstrap-datepicker.uk.js
│ │ │ ├── bootstrap-datepicker.zh-CN.js
│ │ │ └── bootstrap-datepicker.zh-TW.js
│ │ ├── bootstrap-image-gallery
│ │ │ ├── css
│ │ │ │ ├── bootstrap-image-gallery.css
│ │ │ │ └── bootstrap-image-gallery.min.css
│ │ │ ├── img
│ │ │ │ └── loading.gif
│ │ │ └── js
│ │ │ ├── bootstrap-image-gallery.js
│ │ │ └── bootstrap-image-gallery.min.js
│ │ ├── bootstrap-modal
│ │ │ ├── css
│ │ │ │ └── bootstrap-modal.css
│ │ │ ├── img
│ │ │ │ └── ajax-loader.gif
│ │ │ └── js
│ │ │ ├── bootstrap-modal.js
│ │ │ └── bootstrap-modalmanager.js
│ │ ├── bootstrap-multiselect
│ │ │ ├── css
│ │ │ │ └── bootstrap-multiselect.css
│ │ │ └── js
│ │ │ └── bootstrap-multiselect.js
│ │ ├── bootstrap-timepicker
│ │ │ ├── css
│ │ │ │ ├── bootstrap-timepicker.css
│ │ │ │ └── bootstrap-timepicker.min.css
│ │ │ └── js
│ │ │ ├── bootstrap-timepicker.js
│ │ │ └── bootstrap-timepicker.min.js
│ │ ├── flot
│ │ │ ├── excanvas.js
│ │ │ ├── excanvas.min.js
│ │ │ ├── jquery.colorhelpers.js
│ │ │ ├── jquery.flot.aggregate.js
│ │ │ ├── jquery.flot.canvas.js
│ │ │ ├── jquery.flot.categories.js
│ │ │ ├── jquery.flot.crosshair.js
│ │ │ ├── jquery.flot.errorbars.js
│ │ │ ├── jquery.flot.fillbetween.js
│ │ │ ├── jquery.flot.image.js
│ │ │ ├── jquery.flot.js
│ │ │ ├── jquery.flot.navigate.js
│ │ │ ├── jquery.flot.pie.js
│ │ │ ├── jquery.flot.resize.js
│ │ │ ├── jquery.flot.selection.js
│ │ │ ├── jquery.flot.stack.js
│ │ │ ├── jquery.flot.symbol.js
│ │ │ ├── jquery.flot.threshold.js
│ │ │ └── jquery.flot.time.js
│ │ ├── font-awesome
│ │ │ ├── css
│ │ │ │ ├── font-awesome.css
│ │ │ │ └── font-awesome.min.css
│ │ │ └── fonts
│ │ │ ├── FontAwesome.otf
│ │ │ ├── fontawesome-webfont.eot
│ │ │ ├── fontawesome-webfont.svg
│ │ │ ├── fontawesome-webfont.ttf
│ │ │ ├── fontawesome-webfont.woff
│ │ │ └── fontawesome-webfont.woff2
│ │ ├── jquery
│ │ │ ├── jquery.js
│ │ │ └── jquery.min.js
│ │ ├── jquery-ui
│ │ │ ├── jquery.ui.core.js
│ │ │ ├── jquery.ui.core.min.js
│ │ │ ├── jquery.ui.effect.js
│ │ │ ├── jquery.ui.effect.min.js
│ │ │ ├── jquery.ui.mouse.js
│ │ │ ├── jquery.ui.mouse.min.js
│ │ │ ├── jquery.ui.sortable.js
│ │ │ ├── jquery.ui.sortable.min.js
│ │ │ ├── jquery.ui.widget.js
│ │ │ └── jquery.ui.widget.min.js
│ │ ├── load-image
│ │ │ ├── load-image.js
│ │ │ └── load-image.min.js
│ │ ├── select2
│ │ │ ├── select2.css
│ │ │ ├── select2.js
│ │ │ ├── select2_locale_de.js
│ │ │ ├── select2_locale_en.js
│ │ │ ├── select2_locale_es.js
│ │ │ ├── select2_locale_eu.js
│ │ │ ├── select2_locale_fr.js
│ │ │ ├── select2_locale_hr.js
│ │ │ ├── select2_locale_hu.js
│ │ │ ├── select2_locale_it.js
│ │ │ ├── select2_locale_nl.js
│ │ │ ├── select2_locale_pt-BR.js
│ │ │ ├── select2_locale_pt-PT.js
│ │ │ ├── select2_locale_ro.js
│ │ │ ├── select2_locale_ru.js
│ │ │ ├── select2_locale_sk.js
│ │ │ ├── select2_locale_sv.js
│ │ │ ├── select2_locale_tr.js
│ │ │ ├── select2_locale_ua.js
│ │ │ ├── select2_locale_zh-CN.js
│ │ │ ├── select2_locale_zh-hans.js
│ │ │ ├── select2.min.js
│ │ │ ├── select2.png
│ │ │ ├── select2-spinner.gif
│ │ │ └── select2x2.png
│ │ ├── selectize
│ │ │ ├── selectize.bootstrap2.css
│ │ │ ├── selectize.bootstrap3.css
│ │ │ ├── selectize.css
│ │ │ ├── selectize.default.css
│ │ │ ├── selectize.js
│ │ │ ├── selectize.legacy.css
│ │ │ └── selectize.min.js
│ │ └── snapjs
│ │ ├── snap.css
│ │ ├── snap.js
│ │ └── snap.min.js
│ ├── templates
│ │ └── xadmin
│ │ ├── 404.html
│ │ ├── 500.html
│ │ ├── auth
│ │ │ ├── password_reset
│ │ │ │ ├── complete.html
│ │ │ │ ├── confirm.html
│ │ │ │ ├── done.html
│ │ │ │ ├── email.html
│ │ │ │ └── form.html
│ │ │ └── user
│ │ │ ├── add_form.html
│ │ │ └── change_password.html
│ │ ├── base.html
│ │ ├── base_site.html
│ │ ├── blocks
│ │ │ ├── comm.top.setlang.html
│ │ │ ├── comm.top.theme.html
│ │ │ ├── comm.top.topnav.html
│ │ │ ├── modal_list.left_navbar.quickfilter.html
│ │ │ ├── model_form.before_fieldsets.wizard.html
│ │ │ ├── model_form.submit_line.wizard.html
│ │ │ ├── model_list.nav_form.search_form.html
│ │ │ ├── model_list.nav_menu.bookmarks.html
│ │ │ ├── model_list.nav_menu.filters.html
│ │ │ ├── model_list.results_bottom.actions.html
│ │ │ ├── model_list.results_top.charts.html
│ │ │ ├── model_list.results_top.date_hierarchy.html
│ │ │ ├── model_list.top_toolbar.exports.html
│ │ │ ├── model_list.top_toolbar.importexport.export.html
│ │ │ ├── model_list.top_toolbar.importexport.import.html
│ │ │ ├── model_list.top_toolbar.layouts.html
│ │ │ ├── model_list.top_toolbar.refresh.html
│ │ │ └── model_list.top_toolbar.saveorder.html
│ │ ├── edit_inline
│ │ │ ├── accordion.html
│ │ │ ├── base.html
│ │ │ ├── blank.html
│ │ │ ├── one.html
│ │ │ ├── stacked.html
│ │ │ ├── tab.html
│ │ │ └── tabular.html
│ │ ├── filters
│ │ │ ├── char.html
│ │ │ ├── checklist.html
│ │ │ ├── date.html
│ │ │ ├── fk_search.html
│ │ │ ├── list.html
│ │ │ ├── number.html
│ │ │ ├── quickfilter.html
│ │ │ └── rel.html
│ │ ├── forms
│ │ │ └── transfer.html
│ │ ├── grids
│ │ │ └── thumbnails.html
│ │ ├── import_export
│ │ │ ├── export_action.html
│ │ │ └── import.html
│ │ ├── includes
│ │ │ ├── box.html
│ │ │ ├── pagination.html
│ │ │ ├── sitemenu_accordion.html
│ │ │ ├── sitemenu_default.html
│ │ │ ├── submit_line.html
│ │ │ ├── toggle_back.html
│ │ │ └── toggle_menu.html
│ │ ├── layout
│ │ │ ├── fieldset.html
│ │ │ ├── field_value.html
│ │ │ ├── field_value_td.html
│ │ │ ├── input_group.html
│ │ │ └── td-field.html
│ │ ├── views
│ │ │ ├── app_index.html
│ │ │ ├── batch_change_form.html
│ │ │ ├── dashboard.html
│ │ │ ├── form.html
│ │ │ ├── invalid_setup.html
│ │ │ ├── logged_out.html
│ │ │ ├── login.html
│ │ │ ├── model_dashboard.html
│ │ │ ├── model_delete_confirm.html
│ │ │ ├── model_delete_selected_confirm.html
│ │ │ ├── model_detail.html
│ │ │ ├── model_form.html
│ │ │ ├── model_history.html
│ │ │ ├── model_list.html
│ │ │ ├── quick_detail.html
│ │ │ ├── quick_form.html
│ │ │ ├── recover_form.html
│ │ │ ├── recover_list.html
│ │ │ ├── revision_diff.html
│ │ │ └── revision_form.html
│ │ └── widgets
│ │ ├── addform.html
│ │ ├── base.html
│ │ ├── chart.html
│ │ ├── list.html
│ │ └── qbutton.html
│ ├── templatetags
│ │ ├── __init__.py
│ │ ├── __pycache__
│ │ │ ├── __init__.cpython-36.pyc
│ │ │ └── xadmin_tags.cpython-36.pyc
│ │ └── xadmin_tags.py
│ ├── util.py
│ ├── vendors.py
│ ├── views
│ │ ├── base.py
│ │ ├── dashboard.py
│ │ ├── delete.py
│ │ ├── detail.py
│ │ ├── edit.py
│ │ ├── form.py
│ │ ├── __init__.py
│ │ ├── list.py
│ │ ├── __pycache__
│ │ │ ├── base.cpython-36.pyc
│ │ │ ├── dashboard.cpython-36.pyc
│ │ │ ├── delete.cpython-36.pyc
│ │ │ ├── detail.cpython-36.pyc
│ │ │ ├── edit.cpython-36.pyc
│ │ │ ├── form.cpython-36.pyc
│ │ │ ├── __init__.cpython-36.pyc
│ │ │ ├── list.cpython-36.pyc
│ │ │ └── website.cpython-36.pyc
│ │ └── website.py
│ └── widgets.py
├── manage.py
├── media
│ ├── banner
│ │ ├── 201803
│ │ │ ├── 1.jpg
│ │ │ ├── 2.jpg
│ │ │ ├── 3.jpg
│ │ │ ├── 4.jpg
│ │ │ └── 5.jpg
│ │ └── 201905
│ │ ├── 20180330132730454545.jpg
│ │ └── 20180330132824029796.jpg
│ ├── courses
│ │ ├── 2018
│ │ │ └── 03
│ │ │ ├── 540e57300001d6d906000338-240-135.jpg
│ │ │ ├── 540e57300001d6d906000338-240-135_MSIqfvw_7rz18mH.jpg
│ │ │ ├── 540e57300001d6d906000338-240-135_MSIqfvw_bnbpaNc.jpg
│ │ │ ├── 540e57300001d6d906000338-240-135_MSIqfvw.jpg
│ │ │ ├── 540e57300001d6d906000338-240-135_MSIqfvw_Nv4RcHZ.jpg
│ │ │ ├── 540e57300001d6d906000338-240-135_MSIqfvw_tpeToO8.jpg
│ │ │ ├── 540e57300001d6d906000338-240-135_MSIqfvw_V1qfOtc.jpg
│ │ │ ├── 540e57300001d6d906000338-240-135_mvvGYHL_F5ivDde.jpg
│ │ │ ├── 540e57300001d6d906000338-240-135_mvvGYHL.jpg
│ │ │ ├── 540e57300001d6d906000338-240-135_n0L8vbw.jpg
│ │ │ ├── 540e57300001d6d906000338-240-135_oxOw96b.jpg
│ │ │ ├── 540e57300001d6d906000338-240-135_rM0aHMl.jpg
│ │ │ ├── 57035ff200014b8a06000338-240-135_0nFiBSI.jpg
│ │ │ ├── 57035ff200014b8a06000338-240-135_dHfj8Nq_3EWMD3i.jpg
│ │ │ ├── 57035ff200014b8a06000338-240-135_dHfj8Nq.jpg
│ │ │ ├── 57035ff200014b8a06000338-240-135_dHfj8Nq_x7SJIMp.jpg
│ │ │ ├── 57035ff200014b8a06000338-240-135_dHfj8Nq_yc7E7kj.jpg
│ │ │ ├── 57035ff200014b8a06000338-240-135_e3XKtQh.jpg
│ │ │ ├── 57035ff200014b8a06000338-240-135.jpg
│ │ │ ├── 57035ff200014b8a06000338-240-135_wf41oyI.jpg
│ │ │ ├── mysql_f0e7tfo.jpg
│ │ │ ├── mysql.jpg
│ │ │ ├── python文件处理.jpg
│ │ │ ├── python错误和异常_8fz25Kv.jpg
│ │ │ ├── python错误和异常.jpg
│ │ │ ├── python面向对象_fWktVif.jpg
│ │ │ ├── python面向对象_IOo5bB2.jpg
│ │ │ └── python面向对象.jpg
│ │ ├── 2019
│ │ │ └── 05
│ │ │ ├── u21231731533955482397fm26gp0_9xnHGfR.jpg
│ │ │ └── u21231731533955482397fm26gp0.jpg
│ │ └── ueditor
│ │ ├── image_20180331203352_698.png
│ │ ├── 成龙_20180331202733_625.jpg
│ │ ├── 成龙_20180331203417_675.jpg
│ │ └── 科比_20180331202733_512.jpg
│ ├── image
│ │ ├── 201803
│ │ │ ├── 成龙.jpg
│ │ │ ├── 科比_7U0sbVZ.jpg
│ │ │ ├── 科比_cfCx4wm.jpg
│ │ │ ├── 科比_ePRBg9V.jpg
│ │ │ ├── 科比_iNIfyU4.jpg
│ │ │ ├── 科比_jIsOQNj.jpg
│ │ │ ├── 科比.jpg
│ │ │ ├── 科比_jsLt9yp.jpg
│ │ │ ├── 胡歌_aoRzdAU.jpg
│ │ │ ├── 胡歌_h2WK5Wi.jpg
│ │ │ ├── 胡歌.jpg
│ │ │ ├── 胡歌_nZ942cL.jpg
│ │ │ ├── 胡歌_Pulim2b.jpg
│ │ │ └── 胡歌_t5QMGjA.jpg
│ │ ├── 201804
│ │ │ ├── 成龙.jpg
│ │ │ └── 科比.jpg
│ │ └── 201905
│ │ └── liuwang.jpg
│ ├── org
│ │ ├── 2018
│ │ │ └── 03
│ │ │ ├── xdf10.jpg
│ │ │ ├── xdf1.jpg
│ │ │ ├── xdf2.jpg
│ │ │ ├── xdf3.jpg
│ │ │ ├── xdf4.jpg
│ │ │ ├── xdf5.jpg
│ │ │ ├── xdf6.jpg
│ │ │ ├── xdf7.jpg
│ │ │ ├── xdf8.jpg
│ │ │ └── xdf9.jpg
│ │ └── 2019
│ │ └── 05
│ │ └── 20180330132730454545.jpg
│ └── teacher
│ ├── 2018
│ │ └── 03
│ │ ├── aobama_CXWwMef.png
│ │ ├── aobama.png
│ │ ├── 成龙.jpg
│ │ ├── 科比.jpg
│ │ └── 胡歌.jpg
│ └── 2019
│ └── 05
│ └── GitHub_1.png
├── MxOnline
│ ├── __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
└── templates
├── 404.html
├── 500.html
├── active_fail.html
├── base.html
├── course-comment.html
├── course-detail.html
├── course-list.html
├── course-play.html
├── course-video.html
├── forgetpwd.html
├── index.html
├── login.html
├── org_base.html
├── org-detail-course.html
├── org-detail-desc.html
├── org-detail-homepage.html
├── org-detail-teachers.html
├── org-list.html
├── password_reset.html
├── register.html
├── send_success.html
├── teacher-detail.html
├── teachers-list.html
├── usercenter-base.html
├── usercenter-fav-course.html
├── usercenter-fav-org.html
├── usercenter-fav-teacher.html
├── usercenter-info.html
├── usercenter-message.html
└── usercenter-mycourse.html
204 directories, 1023 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论