实例介绍
可以正常运行可以正常运行可以正常运行可以正常运行可以正常运行可以正常运行可以正常运行可以正常运行
【实例截图】
【核心代码】
VueDjangoFrameWorkShop-master(1)
└── VueDjangoFrameWorkShop-master
├── apps
│ ├── goods
│ │ ├── admin.py
│ │ ├── adminx.py
│ │ ├── apps.py
│ │ ├── filters.py
│ │ ├── __init__.py
│ │ ├── migrations
│ │ │ ├── 0001_initial.py
│ │ │ ├── 0002_auto_20180304_1535.py
│ │ │ └── __init__.py
│ │ ├── models.py
│ │ ├── serializers.py
│ │ ├── tests.py
│ │ ├── views_base.py
│ │ └── views.py
│ ├── __init__.py
│ ├── trade
│ │ ├── admin.py
│ │ ├── adminx.py
│ │ ├── apps.py
│ │ ├── __init__.py
│ │ ├── migrations
│ │ │ ├── 0001_initial.py
│ │ │ ├── 0002_auto_20180213_1939.py
│ │ │ ├── 0003_auto_20180304_1535.py
│ │ │ └── __init__.py
│ │ ├── models.py
│ │ ├── serializers.py
│ │ ├── tests.py
│ │ └── views.py
│ ├── user_operation
│ │ ├── admin.py
│ │ ├── adminx.py
│ │ ├── apps.py
│ │ ├── __init__.py
│ │ ├── migrations
│ │ │ ├── 0001_initial.py
│ │ │ ├── 0002_auto_20180213_1939.py
│ │ │ ├── 0003_auto_20180311_1532.py
│ │ │ ├── 0004_auto_20180311_1545.py
│ │ │ └── __init__.py
│ │ ├── models.py
│ │ ├── serializers.py
│ │ ├── signals.py
│ │ ├── tests.py
│ │ └── views.py
│ ├── users
│ │ ├── admin.py
│ │ ├── adminx.py
│ │ ├── apps.py
│ │ ├── __init__.py
│ │ ├── migrations
│ │ │ ├── 0001_initial.py
│ │ │ ├── 0002_auto_20180304_1535.py
│ │ │ ├── 0003_auto_20180309_0940.py
│ │ │ ├── 0004_auto_20180311_1532.py
│ │ │ └── __init__.py
│ │ ├── models.py
│ │ ├── serializers.py
│ │ ├── signals.py
│ │ ├── tests.py
│ │ └── views.py
│ └── utils
│ ├── alipay.py
│ ├── __init__.py
│ ├── permissions.py
│ ├── weibo_login.py
│ └── yunpian.py
├── db.sqlite3
├── db_tools
│ ├── data
│ │ ├── category_data.py
│ │ └── product_data.py
│ ├── import_category_data.py
│ └── import_goods_data.py
├── extra_apps
│ ├── django_filters
│ │ ├── compat.py
│ │ ├── conf.py
│ │ ├── constants.py
│ │ ├── exceptions.py
│ │ ├── fields.py
│ │ ├── filterset.py
│ │ ├── filters.py
│ │ ├── __init__.py
│ │ ├── locale
│ │ │ ├── da
│ │ │ │ └── LC_MESSAGES
│ │ │ │ ├── django.mo
│ │ │ │ └── django.po
│ │ │ ├── de
│ │ │ │ └── LC_MESSAGES
│ │ │ │ ├── django.mo
│ │ │ │ └── django.po
│ │ │ ├── el
│ │ │ │ └── LC_MESSAGES
│ │ │ │ ├── django.mo
│ │ │ │ └── django.po
│ │ │ ├── es_AR
│ │ │ │ └── LC_MESSAGES
│ │ │ │ ├── django.mo
│ │ │ │ └── django.po
│ │ │ ├── es_ES
│ │ │ │ └── LC_MESSAGES
│ │ │ │ ├── django.mo
│ │ │ │ └── django.po
│ │ │ ├── fr
│ │ │ │ └── LC_MESSAGES
│ │ │ │ ├── django.mo
│ │ │ │ └── django.po
│ │ │ ├── pl
│ │ │ │ └── LC_MESSAGES
│ │ │ │ ├── django.mo
│ │ │ │ └── django.po
│ │ │ ├── ru
│ │ │ │ └── LC_MESSAGES
│ │ │ │ ├── django.mo
│ │ │ │ └── django.po
│ │ │ ├── zh_CN
│ │ │ │ └── LC_MESSAGES
│ │ │ │ └── django.po
│ │ │ └── zh_Hans
│ │ │ └── LC_MESSAGES
│ │ │ ├── django.mo
│ │ │ ├── django.po
│ │ │ └── django.po.bak
│ │ ├── models.py
│ │ ├── rest_framework
│ │ │ ├── backends.py
│ │ │ ├── filterset.py
│ │ │ ├── filters.py
│ │ │ └── __init__.py
│ │ ├── templates
│ │ │ └── django_filters
│ │ │ ├── rest_framework
│ │ │ │ ├── crispy_form.html
│ │ │ │ └── form.html
│ │ │ └── widgets
│ │ │ └── multiwidget.html
│ │ ├── utils.py
│ │ ├── views.py
│ │ └── widgets.py
│ ├── DjangoUeditor
│ │ ├── commands.py
│ │ ├── forms.py
│ │ ├── __init__.py
│ │ ├── models.py
│ │ ├── readme.md
│ │ ├── 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
│ │ ├── test_try.py
│ │ ├── urls.py
│ │ ├── utils.py
│ │ ├── views.py
│ │ └── widgets.py
│ ├── __init__.py
│ ├── rest_framework
│ │ ├── apps.py
│ │ ├── authentication.py
│ │ ├── authtoken
│ │ │ ├── admin.py
│ │ │ ├── apps.py
│ │ │ ├── __init__.py
│ │ │ ├── management
│ │ │ │ ├── commands
│ │ │ │ │ ├── drf_create_token.py
│ │ │ │ │ └── __init__.py
│ │ │ │ └── __init__.py
│ │ │ ├── migrations
│ │ │ │ ├── 0001_initial.py
│ │ │ │ ├── 0002_auto_20160226_1747.py
│ │ │ │ └── __init__.py
│ │ │ ├── models.py
│ │ │ ├── serializers.py
│ │ │ └── views.py
│ │ ├── checks.py
│ │ ├── compat.py
│ │ ├── decorators.py
│ │ ├── documentation.py
│ │ ├── exceptions.py
│ │ ├── fields.py
│ │ ├── filters.py
│ │ ├── generics.py
│ │ ├── __init__.py
│ │ ├── locale
│ │ │ ├── ach
│ │ │ │ └── LC_MESSAGES
│ │ │ │ ├── django.mo
│ │ │ │ └── django.po
│ │ │ ├── ar
│ │ │ │ └── LC_MESSAGES
│ │ │ │ ├── django.mo
│ │ │ │ └── django.po
│ │ │ ├── be
│ │ │ │ └── LC_MESSAGES
│ │ │ │ ├── django.mo
│ │ │ │ └── django.po
│ │ │ ├── ca
│ │ │ │ └── LC_MESSAGES
│ │ │ │ ├── django.mo
│ │ │ │ └── django.po
│ │ │ ├── ca_ES
│ │ │ │ └── LC_MESSAGES
│ │ │ │ ├── django.mo
│ │ │ │ └── django.po
│ │ │ ├── cs
│ │ │ │ └── LC_MESSAGES
│ │ │ │ ├── django.mo
│ │ │ │ └── django.po
│ │ │ ├── da
│ │ │ │ └── LC_MESSAGES
│ │ │ │ ├── django.mo
│ │ │ │ └── django.po
│ │ │ ├── de
│ │ │ │ └── LC_MESSAGES
│ │ │ │ ├── django.mo
│ │ │ │ └── django.po
│ │ │ ├── el
│ │ │ │ └── LC_MESSAGES
│ │ │ │ ├── django.mo
│ │ │ │ └── django.po
│ │ │ ├── el_GR
│ │ │ │ └── LC_MESSAGES
│ │ │ │ ├── django.mo
│ │ │ │ └── django.po
│ │ │ ├── en
│ │ │ │ └── LC_MESSAGES
│ │ │ │ ├── django.mo
│ │ │ │ └── django.po
│ │ │ ├── en_AU
│ │ │ │ └── LC_MESSAGES
│ │ │ │ ├── django.mo
│ │ │ │ └── django.po
│ │ │ ├── en_CA
│ │ │ │ └── LC_MESSAGES
│ │ │ │ ├── django.mo
│ │ │ │ └── django.po
│ │ │ ├── en_US
│ │ │ │ └── LC_MESSAGES
│ │ │ │ ├── django.mo
│ │ │ │ └── django.po
│ │ │ ├── es
│ │ │ │ └── LC_MESSAGES
│ │ │ │ ├── django.mo
│ │ │ │ └── django.po
│ │ │ ├── et
│ │ │ │ └── LC_MESSAGES
│ │ │ │ ├── django.mo
│ │ │ │ └── django.po
│ │ │ ├── fa
│ │ │ │ └── LC_MESSAGES
│ │ │ │ ├── django.mo
│ │ │ │ └── django.po
│ │ │ ├── fa_IR
│ │ │ │ └── LC_MESSAGES
│ │ │ │ ├── django.mo
│ │ │ │ └── django.po
│ │ │ ├── fi
│ │ │ │ └── LC_MESSAGES
│ │ │ │ ├── django.mo
│ │ │ │ └── django.po
│ │ │ ├── fr
│ │ │ │ └── LC_MESSAGES
│ │ │ │ ├── django.mo
│ │ │ │ └── django.po
│ │ │ ├── fr_CA
│ │ │ │ └── LC_MESSAGES
│ │ │ │ ├── django.mo
│ │ │ │ └── django.po
│ │ │ ├── gl
│ │ │ │ └── LC_MESSAGES
│ │ │ │ ├── django.mo
│ │ │ │ └── django.po
│ │ │ ├── gl_ES
│ │ │ │ └── LC_MESSAGES
│ │ │ │ ├── django.mo
│ │ │ │ └── django.po
│ │ │ ├── he_IL
│ │ │ │ └── LC_MESSAGES
│ │ │ │ ├── django.mo
│ │ │ │ └── django.po
│ │ │ ├── hu
│ │ │ │ └── LC_MESSAGES
│ │ │ │ ├── django.mo
│ │ │ │ └── django.po
│ │ │ ├── id
│ │ │ │ └── LC_MESSAGES
│ │ │ │ ├── django.mo
│ │ │ │ └── django.po
│ │ │ ├── it
│ │ │ │ └── LC_MESSAGES
│ │ │ │ ├── django.mo
│ │ │ │ └── django.po
│ │ │ ├── ja
│ │ │ │ └── LC_MESSAGES
│ │ │ │ ├── django.mo
│ │ │ │ └── django.po
│ │ │ ├── ko_KR
│ │ │ │ └── LC_MESSAGES
│ │ │ │ ├── django.mo
│ │ │ │ └── django.po
│ │ │ ├── lv
│ │ │ │ └── LC_MESSAGES
│ │ │ │ ├── django.mo
│ │ │ │ └── django.po
│ │ │ ├── mk
│ │ │ │ └── LC_MESSAGES
│ │ │ │ ├── django.mo
│ │ │ │ └── django.po
│ │ │ ├── nb
│ │ │ │ └── LC_MESSAGES
│ │ │ │ ├── django.mo
│ │ │ │ └── django.po
│ │ │ ├── nl
│ │ │ │ └── LC_MESSAGES
│ │ │ │ ├── django.mo
│ │ │ │ └── django.po
│ │ │ ├── nn
│ │ │ │ └── LC_MESSAGES
│ │ │ │ ├── django.mo
│ │ │ │ └── django.po
│ │ │ ├── no
│ │ │ │ └── LC_MESSAGES
│ │ │ │ ├── django.mo
│ │ │ │ └── django.po
│ │ │ ├── pl
│ │ │ │ └── LC_MESSAGES
│ │ │ │ ├── django.mo
│ │ │ │ └── django.po
│ │ │ ├── pt
│ │ │ │ └── LC_MESSAGES
│ │ │ │ ├── django.mo
│ │ │ │ └── django.po
│ │ │ ├── pt_BR
│ │ │ │ └── LC_MESSAGES
│ │ │ │ ├── django.mo
│ │ │ │ └── django.po
│ │ │ ├── pt_PT
│ │ │ │ └── LC_MESSAGES
│ │ │ │ ├── django.mo
│ │ │ │ └── django.po
│ │ │ ├── ro
│ │ │ │ └── LC_MESSAGES
│ │ │ │ ├── django.mo
│ │ │ │ └── django.po
│ │ │ ├── ru
│ │ │ │ └── LC_MESSAGES
│ │ │ │ ├── django.mo
│ │ │ │ └── django.po
│ │ │ ├── sk
│ │ │ │ └── LC_MESSAGES
│ │ │ │ ├── django.mo
│ │ │ │ └── django.po
│ │ │ ├── sl
│ │ │ │ └── LC_MESSAGES
│ │ │ │ ├── django.mo
│ │ │ │ └── django.po
│ │ │ ├── sv
│ │ │ │ └── LC_MESSAGES
│ │ │ │ ├── django.mo
│ │ │ │ └── django.po
│ │ │ ├── tr
│ │ │ │ └── LC_MESSAGES
│ │ │ │ ├── django.mo
│ │ │ │ └── django.po
│ │ │ ├── tr_TR
│ │ │ │ └── LC_MESSAGES
│ │ │ │ ├── django.mo
│ │ │ │ └── django.po
│ │ │ ├── uk
│ │ │ │ └── LC_MESSAGES
│ │ │ │ ├── django.mo
│ │ │ │ └── django.po
│ │ │ ├── vi
│ │ │ │ └── LC_MESSAGES
│ │ │ │ ├── django.mo
│ │ │ │ └── django.po
│ │ │ ├── zh_CN
│ │ │ │ └── LC_MESSAGES
│ │ │ │ ├── django.mo
│ │ │ │ └── django.po
│ │ │ ├── zh_Hans
│ │ │ │ └── LC_MESSAGES
│ │ │ │ ├── django.mo
│ │ │ │ └── django.po
│ │ │ ├── zh_Hant
│ │ │ │ └── LC_MESSAGES
│ │ │ │ ├── django.mo
│ │ │ │ └── django.po
│ │ │ └── zh_TW
│ │ │ └── LC_MESSAGES
│ │ │ ├── django.mo
│ │ │ └── django.po
│ │ ├── metadata.py
│ │ ├── mixins.py
│ │ ├── models.py
│ │ ├── negotiation.py
│ │ ├── pagination.py
│ │ ├── parsers.py
│ │ ├── permissions.py
│ │ ├── relations.py
│ │ ├── renderers.py
│ │ ├── request.py
│ │ ├── response.py
│ │ ├── reverse.py
│ │ ├── routers.py
│ │ ├── schemas
│ │ │ ├── generators.py
│ │ │ ├── __init__.py
│ │ │ ├── inspectors.py
│ │ │ ├── utils.py
│ │ │ └── views.py
│ │ ├── serializers.py
│ │ ├── settings.py
│ │ ├── static
│ │ │ └── rest_framework
│ │ │ ├── css
│ │ │ │ ├── bootstrap.min.css
│ │ │ │ ├── bootstrap-theme.min.css
│ │ │ │ ├── bootstrap-tweaks.css
│ │ │ │ ├── default.css
│ │ │ │ ├── font-awesome-4.0.3.css
│ │ │ │ └── prettify.css
│ │ │ ├── docs
│ │ │ │ ├── css
│ │ │ │ │ ├── base.css
│ │ │ │ │ ├── highlight.css
│ │ │ │ │ └── jquery.json-view.min.css
│ │ │ │ ├── img
│ │ │ │ │ ├── favicon.ico
│ │ │ │ │ └── grid.png
│ │ │ │ └── js
│ │ │ │ ├── api.js
│ │ │ │ ├── highlight.pack.js
│ │ │ │ └── jquery.json-view.min.js
│ │ │ ├── fonts
│ │ │ │ ├── fontawesome-webfont.eot
│ │ │ │ ├── fontawesome-webfont.svg
│ │ │ │ ├── fontawesome-webfont.ttf
│ │ │ │ ├── fontawesome-webfont.woff
│ │ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ │ ├── glyphicons-halflings-regular.svg
│ │ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ │ ├── glyphicons-halflings-regular.woff
│ │ │ │ └── glyphicons-halflings-regular.woff2
│ │ │ ├── img
│ │ │ │ ├── glyphicons-halflings.png
│ │ │ │ ├── glyphicons-halflings-white.png
│ │ │ │ └── grid.png
│ │ │ └── js
│ │ │ ├── ajax-form.js
│ │ │ ├── bootstrap.min.js
│ │ │ ├── coreapi-0.1.1.js
│ │ │ ├── csrf.js
│ │ │ ├── default.js
│ │ │ ├── jquery-3.3.1.min.js
│ │ │ └── prettify-min.js
│ │ ├── status.py
│ │ ├── templates
│ │ │ └── rest_framework
│ │ │ ├── admin
│ │ │ │ ├── detail.html
│ │ │ │ ├── dict_value.html
│ │ │ │ ├── list.html
│ │ │ │ ├── list_value.html
│ │ │ │ └── simple_list_value.html
│ │ │ ├── admin.html
│ │ │ ├── api.html
│ │ │ ├── base.html
│ │ │ ├── docs
│ │ │ │ ├── auth
│ │ │ │ │ ├── basic.html
│ │ │ │ │ ├── session.html
│ │ │ │ │ └── token.html
│ │ │ │ ├── document.html
│ │ │ │ ├── error.html
│ │ │ │ ├── index.html
│ │ │ │ ├── interact.html
│ │ │ │ ├── langs
│ │ │ │ │ ├── javascript.html
│ │ │ │ │ ├── javascript-intro.html
│ │ │ │ │ ├── python.html
│ │ │ │ │ ├── python-intro.html
│ │ │ │ │ ├── shell.html
│ │ │ │ │ └── shell-intro.html
│ │ │ │ ├── link.html
│ │ │ │ └── sidebar.html
│ │ │ ├── filters
│ │ │ │ ├── base.html
│ │ │ │ ├── ordering.html
│ │ │ │ └── search.html
│ │ │ ├── horizontal
│ │ │ │ ├── checkbox.html
│ │ │ │ ├── checkbox_multiple.html
│ │ │ │ ├── dict_field.html
│ │ │ │ ├── fieldset.html
│ │ │ │ ├── form.html
│ │ │ │ ├── input.html
│ │ │ │ ├── list_field.html
│ │ │ │ ├── list_fieldset.html
│ │ │ │ ├── radio.html
│ │ │ │ ├── select.html
│ │ │ │ ├── select_multiple.html
│ │ │ │ └── textarea.html
│ │ │ ├── inline
│ │ │ │ ├── checkbox.html
│ │ │ │ ├── checkbox_multiple.html
│ │ │ │ ├── dict_field.html
│ │ │ │ ├── fieldset.html
│ │ │ │ ├── form.html
│ │ │ │ ├── input.html
│ │ │ │ ├── list_field.html
│ │ │ │ ├── list_fieldset.html
│ │ │ │ ├── radio.html
│ │ │ │ ├── select.html
│ │ │ │ ├── select_multiple.html
│ │ │ │ └── textarea.html
│ │ │ ├── login_base.html
│ │ │ ├── login.html
│ │ │ ├── pagination
│ │ │ │ ├── numbers.html
│ │ │ │ └── previous_and_next.html
│ │ │ ├── raw_data_form.html
│ │ │ ├── schema.js
│ │ │ └── vertical
│ │ │ ├── checkbox.html
│ │ │ ├── checkbox_multiple.html
│ │ │ ├── dict_field.html
│ │ │ ├── fieldset.html
│ │ │ ├── form.html
│ │ │ ├── input.html
│ │ │ ├── list_field.html
│ │ │ ├── list_fieldset.html
│ │ │ ├── radio.html
│ │ │ ├── select.html
│ │ │ ├── select_multiple.html
│ │ │ └── textarea.html
│ │ ├── templatetags
│ │ │ ├── __init__.py
│ │ │ └── rest_framework.py
│ │ ├── test.py
│ │ ├── throttling.py
│ │ ├── urlpatterns.py
│ │ ├── urls.py
│ │ ├── utils
│ │ │ ├── breadcrumbs.py
│ │ │ ├── encoders.py
│ │ │ ├── field_mapping.py
│ │ │ ├── formatting.py
│ │ │ ├── html.py
│ │ │ ├── humanize_datetime.py
│ │ │ ├── __init__.py
│ │ │ ├── json.py
│ │ │ ├── mediatypes.py
│ │ │ ├── model_meta.py
│ │ │ ├── representation.py
│ │ │ ├── serializer_helpers.py
│ │ │ └── urls.py
│ │ ├── validators.py
│ │ ├── versioning.py
│ │ ├── viewsets.py
│ │ └── views.py
│ ├── social_core
│ │ ├── actions.py
│ │ ├── backends
│ │ │ ├── amazon.py
│ │ │ ├── angel.py
│ │ │ ├── aol.py
│ │ │ ├── appsfuel.py
│ │ │ ├── arcgis.py
│ │ │ ├── asana.py
│ │ │ ├── azuread_b2c.py
│ │ │ ├── azuread.py
│ │ │ ├── azuread_tenant.py
│ │ │ ├── base.py
│ │ │ ├── battlenet.py
│ │ │ ├── beats.py
│ │ │ ├── behance.py
│ │ │ ├── belgiumeid.py
│ │ │ ├── bitbucket.py
│ │ │ ├── box.py
│ │ │ ├── bungie.py
│ │ │ ├── changetip.py
│ │ │ ├── chatwork.py
│ │ │ ├── classlink.py
│ │ │ ├── clef.py
│ │ │ ├── coding.py
│ │ │ ├── coinbase.py
│ │ │ ├── coursera.py
│ │ │ ├── dailymotion.py
│ │ │ ├── deezer.py
│ │ │ ├── digitalocean.py
│ │ │ ├── disqus.py
│ │ │ ├── docker.py
│ │ │ ├── douban.py
│ │ │ ├── dribbble.py
│ │ │ ├── drip.py
│ │ │ ├── dropbox.py
│ │ │ ├── echosign.py
│ │ │ ├── edmodo.py
│ │ │ ├── email.py
│ │ │ ├── eventbrite.py
│ │ │ ├── eveonline.py
│ │ │ ├── evernote.py
│ │ │ ├── exacttarget.py
│ │ │ ├── facebook.py
│ │ │ ├── fedora.py
│ │ │ ├── fitbit.py
│ │ │ ├── five_hundred_px.py
│ │ │ ├── flickr.py
│ │ │ ├── foursquare.py
│ │ │ ├── gae.py
│ │ │ ├── github_enterprise.py
│ │ │ ├── github.py
│ │ │ ├── gitlab.py
│ │ │ ├── goclioeu.py
│ │ │ ├── goclio.py
│ │ │ ├── google_openidconnect.py
│ │ │ ├── google.py
│ │ │ ├── __init__.py
│ │ │ ├── instagram.py
│ │ │ ├── itembase.py
│ │ │ ├── jawbone.py
│ │ │ ├── justgiving.py
│ │ │ ├── kakao.py
│ │ │ ├── khanacademy.py
│ │ │ ├── lastfm.py
│ │ │ ├── launchpad.py
│ │ │ ├── legacy.py
│ │ │ ├── line.py
│ │ │ ├── linkedin.py
│ │ │ ├── livejournal.py
│ │ │ ├── live.py
│ │ │ ├── loginradius.py
│ │ │ ├── lyft.py
│ │ │ ├── mailchimp.py
│ │ │ ├── mailru.py
│ │ │ ├── mapmyfitness.py
│ │ │ ├── mediawiki.py
│ │ │ ├── meetup.py
│ │ │ ├── mendeley.py
│ │ │ ├── microsoft.py
│ │ │ ├── mineid.py
│ │ │ ├── mixcloud.py
│ │ │ ├── monzo.py
│ │ │ ├── moves.py
│ │ │ ├── nationbuilder.py
│ │ │ ├── naver.py
│ │ │ ├── ngpvan.py
│ │ │ ├── nk.py
│ │ │ ├── oauth.py
│ │ │ ├── odnoklassniki.py
│ │ │ ├── open_id_connect.py
│ │ │ ├── open_id.py
│ │ │ ├── openshift.py
│ │ │ ├── openstreetmap.py
│ │ │ ├── orbi.py
│ │ │ ├── orcid.py
│ │ │ ├── patreon.py
│ │ │ ├── persona.py
│ │ │ ├── phabricator.py
│ │ │ ├── pinterest.py
│ │ │ ├── pixelpin.py
│ │ │ ├── pocket.py
│ │ │ ├── podio.py
│ │ │ ├── professionali.py
│ │ │ ├── pushbullet.py
│ │ │ ├── qiita.py
│ │ │ ├── qq.py
│ │ │ ├── quizlet.py
│ │ │ ├── rdio.py
│ │ │ ├── readability.py
│ │ │ ├── reddit.py
│ │ │ ├── runkeeper.py
│ │ │ ├── salesforce.py
│ │ │ ├── saml.py
│ │ │ ├── shimmering.py
│ │ │ ├── shopify.py
│ │ │ ├── sketchfab.py
│ │ │ ├── skyrock.py
│ │ │ ├── slack.py
│ │ │ ├── soundcloud.py
│ │ │ ├── spotify.py
│ │ │ ├── stackoverflow.py
│ │ │ ├── steam.py
│ │ │ ├── stocktwits.py
│ │ │ ├── strava.py
│ │ │ ├── stripe.py
│ │ │ ├── suse.py
│ │ │ ├── taobao.py
│ │ │ ├── thisismyjam.py
│ │ │ ├── trello.py
│ │ │ ├── tripit.py
│ │ │ ├── tumblr.py
│ │ │ ├── twilio.py
│ │ │ ├── twitch.py
│ │ │ ├── twitter.py
│ │ │ ├── uber.py
│ │ │ ├── ubuntu.py
│ │ │ ├── udata.py
│ │ │ ├── untappd.py
│ │ │ ├── upwork.py
│ │ │ ├── username.py
│ │ │ ├── utils.py
│ │ │ ├── vend.py
│ │ │ ├── vimeo.py
│ │ │ ├── vk.py
│ │ │ ├── weibo.py
│ │ │ ├── weixin.py
│ │ │ ├── withings.py
│ │ │ ├── wunderlist.py
│ │ │ ├── xing.py
│ │ │ ├── yahoo.py
│ │ │ ├── yammer.py
│ │ │ ├── yandex.py
│ │ │ └── zotero.py
│ │ ├── exceptions.py
│ │ ├── __init__.py
│ │ ├── pipeline
│ │ │ ├── debug.py
│ │ │ ├── disconnect.py
│ │ │ ├── __init__.py
│ │ │ ├── mail.py
│ │ │ ├── partial.py
│ │ │ ├── social_auth.py
│ │ │ ├── user.py
│ │ │ └── utils.py
│ │ ├── storage.py
│ │ ├── store.py
│ │ ├── strategy.py
│ │ ├── tests
│ │ │ ├── actions
│ │ │ │ ├── actions.py
│ │ │ │ ├── __init__.py
│ │ │ │ ├── test_associate.py
│ │ │ │ ├── test_disconnect.py
│ │ │ │ └── test_login.py
│ │ │ ├── backends
│ │ │ │ ├── base.py
│ │ │ │ ├── data
│ │ │ │ │ └── saml_response.txt
│ │ │ │ ├── __init__.py
│ │ │ │ ├── legacy.py
│ │ │ │ ├── oauth.py
│ │ │ │ ├── open_id_connect.py
│ │ │ │ ├── open_id.py
│ │ │ │ ├── test_amazon.py
│ │ │ │ ├── test_angel.py
│ │ │ │ ├── test_arcgis.py
│ │ │ │ ├── test_asana.py
│ │ │ │ ├── test_azuread_b2c.py
│ │ │ │ ├── test_azuread.py
│ │ │ │ ├── test_behance.py
│ │ │ │ ├── test_bitbucket.py
│ │ │ │ ├── test_box.py
│ │ │ │ ├── test_broken.py
│ │ │ │ ├── test_chatwork.py
│ │ │ │ ├── test_clef.py
│ │ │ │ ├── test_coinbase.py
│ │ │ │ ├── test_coursera.py
│ │ │ │ ├── test_dailymotion.py
│ │ │ │ ├── test_deezer.py
│ │ │ │ ├── test_digitalocean.py
│ │ │ │ ├── test_disqus.py
│ │ │ │ ├── test_dribbble.py
│ │ │ │ ├── test_drip.py
│ │ │ │ ├── test_dropbox.py
│ │ │ │ ├── test_dummy.py
│ │ │ │ ├── test_edmodo.py
│ │ │ │ ├── test_email.py
│ │ │ │ ├── test_eventbrite.py
│ │ │ │ ├── test_evernote.py
│ │ │ │ ├── test_facebook.py
│ │ │ │ ├── test_fitbit.py
│ │ │ │ ├── test_five_hundred_px.py
│ │ │ │ ├── test_flickr.py
│ │ │ │ ├── test_foursquare.py
│ │ │ │ ├── test_github_enterprise.py
│ │ │ │ ├── test_github.py
│ │ │ │ ├── test_gitlab.py
│ │ │ │ ├── test_google.py
│ │ │ │ ├── test_instagram.py
│ │ │ │ ├── test_itembase.py
│ │ │ │ ├── test_kakao.py
│ │ │ │ ├── test_khanacademy.py
│ │ │ │ ├── test_linkedin.py
│ │ │ │ ├── test_livejournal.py
│ │ │ │ ├── test_live.py
│ │ │ │ ├── test_lyft.py
│ │ │ │ ├── test_mapmyfitness.py
│ │ │ │ ├── test_mineid.py
│ │ │ │ ├── test_mixcloud.py
│ │ │ │ ├── test_nationbuilder.py
│ │ │ │ ├── test_naver.py
│ │ │ │ ├── test_ngpvan.py
│ │ │ │ ├── test_orbi.py
│ │ │ │ ├── test_patreon.py
│ │ │ │ ├── test_phabricator.py
│ │ │ │ ├── test_pinterest.py
│ │ │ │ ├── test_podio.py
│ │ │ │ ├── test_qiita.py
│ │ │ │ ├── test_quizlet.py
│ │ │ │ ├── test_readability.py
│ │ │ │ ├── test_reddit.py
│ │ │ │ ├── test_saml.py
│ │ │ │ ├── test_sketchfab.py
│ │ │ │ ├── test_skyrock.py
│ │ │ │ ├── test_slack.py
│ │ │ │ ├── test_soundcloud.py
│ │ │ │ ├── test_spotify.py
│ │ │ │ ├── test_stackoverflow.py
│ │ │ │ ├── test_steam.py
│ │ │ │ ├── test_stocktwits.py
│ │ │ │ ├── test_strava.py
│ │ │ │ ├── test_stripe.py
│ │ │ │ ├── test_taobao.py
│ │ │ │ ├── test_thisismyjam.py
│ │ │ │ ├── test_tripit.py
│ │ │ │ ├── test_tumblr.py
│ │ │ │ ├── test_twitch.py
│ │ │ │ ├── test_twitter.py
│ │ │ │ ├── test_uber.py
│ │ │ │ ├── test_udata.py
│ │ │ │ ├── test_upwork.py
│ │ │ │ ├── test_username.py
│ │ │ │ ├── test_utils.py
│ │ │ │ ├── test_vk.py
│ │ │ │ ├── test_wunderlist.py
│ │ │ │ ├── test_xing.py
│ │ │ │ ├── test_yahoo.py
│ │ │ │ ├── test_yammer.py
│ │ │ │ ├── test_yandex.py
│ │ │ │ └── test_zotero.py
│ │ │ ├── __init__.py
│ │ │ ├── models.py
│ │ │ ├── pipeline.py
│ │ │ ├── requirements-base.txt
│ │ │ ├── requirements-pypy.txt
│ │ │ ├── requirements-python2.txt
│ │ │ ├── requirements-python3.txt
│ │ │ ├── requirements.txt
│ │ │ ├── strategy.py
│ │ │ ├── test_exceptions.py
│ │ │ ├── testkey.pem
│ │ │ ├── test_partial.py
│ │ │ ├── test_pipeline.py
│ │ │ ├── test_storage.py
│ │ │ └── test_utils.py
│ │ └── utils.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
│ ├── 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
│ │ ├── 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
│ ├── 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
│ │ ├── 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
│ │ └── xadmin_tags.py
│ ├── util.py
│ ├── vendors.py
│ ├── views
│ │ ├── base.py
│ │ ├── dashboard.py
│ │ ├── delete.py
│ │ ├── detail.py
│ │ ├── edit.py
│ │ ├── form.py
│ │ ├── __init__.py
│ │ ├── list.py
│ │ └── website.py
│ └── widgets.py
├── manage.py
├── media
│ ├── 15_P_1448947257324.jpg
│ ├── 2_20170719161405_249.jpg
│ ├── 2_20170719161405_249_vK49DiO.jpg
│ ├── 2_20170719161405_249_VXtw0x7.jpg
│ ├── 2_20170719161435_381.jpg
│ ├── 2_P_1448945810202.jpg
│ ├── 2_P_1448945810202_lGp49nw.jpg
│ ├── 2_P_1448945810202_tFI76bj.jpg
│ ├── 9_P_1448944791617.jpg
│ ├── banner
│ │ ├── banner1.jpg
│ │ ├── banner1_QJfjj84.jpg
│ │ ├── banner2.jpg
│ │ ├── banner2_YfUjbyJ.jpg
│ │ ├── banner3.jpg
│ │ └── banner3_WxHN5Ut.jpg
│ ├── brands
│ │ ├── lyfs-1.jpg
│ │ ├── lyfs-1_QB7Vq1T.jpg
│ │ ├── lyfs-1_QpmaTvO.jpg
│ │ ├── lyfs-2.jpg
│ │ ├── scsg-2_G6LV34f.jpg
│ │ ├── scsg-2_G6LV34f_KJSIWa9.jpg
│ │ ├── scsg-2.jpg
│ │ ├── scsg-2_s2g3L7M.jpg
│ │ ├── scsg-3.jpg
│ │ ├── sxsp-1_HPZZvbI.jpg
│ │ ├── sxsp-1.jpg
│ │ ├── sxsp-1_KDntI6h.jpg
│ │ ├── sxsp-1_KDntI6h_NCnn8dv.jpg
│ │ ├── sxsp-2_bodIxIy.jpg
│ │ ├── sxsp-2.jpg
│ │ ├── sxsp-2_nUjuDwZ.jpg
│ │ ├── sxsp-3_jG6lwp4.jpg
│ │ ├── sxsp-3.jpg
│ │ └── sxsp-3_p6QnMEd.jpg
│ ├── goods
│ │ └── images
│ │ ├── 10_P_1448944572085.jpg
│ │ ├── 11_P_1448944388277.jpg
│ │ ├── 12_P_1448947547989.jpg
│ │ ├── 13_P_1448947460386.jpg
│ │ ├── 14_P_1448947354031.jpg
│ │ ├── 15_P_1448947257324.jpg
│ │ ├── 16_P_1448947194687.jpg
│ │ ├── 17_P_1448947102246.jpg
│ │ ├── 18_P_1448947011435.jpg
│ │ ├── 19_P_1448946951581.jpg
│ │ ├── 1_P_1449024889889.jpg
│ │ ├── 20_P_1448946850602.jpg
│ │ ├── 21_P_1448946793276.jpg
│ │ ├── 2_20170719161405_249.jpg
│ │ ├── 2_20170719161414_628.jpg
│ │ ├── 2_20170719161435_381.jpg
│ │ ├── 22_P_1448946729629.jpg
│ │ ├── 23_P_1448948070348.jpg
│ │ ├── 24_P_1448948023823.jpg
│ │ ├── 25_P_1448947875346.jpg
│ │ ├── 26_P_1448947825754.jpg
│ │ ├── 27_P_1448947771805.jpg
│ │ ├── 28_P_1448947699948.jpg
│ │ ├── 29_P_1448947631994.jpg
│ │ ├── 2_P_1448945810202.jpg
│ │ ├── 30_P_1448948663450.jpg
│ │ ├── 31_P_1448948598947.jpg
│ │ ├── 32_P_1448948525620.jpg
│ │ ├── 33_P_1448948479966.jpg
│ │ ├── 34_P_1448948399009.jpg
│ │ ├── 35_P_1448948333610.jpg
│ │ ├── 36_P_1448948234405.jpg
│ │ ├── 37_P_1448949284365.jpg
│ │ ├── 38_P_1448949220255.jpg
│ │ ├── 39_P_1448949115481.jpg
│ │ ├── 3_P_1448945490837.jpg
│ │ ├── 40_P_1448949038702.jpg
│ │ ├── 41_P_1448948980358.jpg
│ │ ├── 42_P_1448948895193.jpg
│ │ ├── 43_P_1448948762645.jpg
│ │ ├── 44_P_1448948850187.jpg
│ │ ├── 45_P_1448946661303.jpg
│ │ ├── 46_P_1448946598711.jpg
│ │ ├── 47_P_1448946213263.jpg
│ │ ├── 48_P_1448943988970.jpg
│ │ ├── 49_P_1448162819889.jpg
│ │ ├── 4_P_1448945381985.jpg
│ │ ├── 50_P_1448946543091.jpg
│ │ ├── 51_P_1448946466595.jpg
│ │ ├── 53_P_1495068879687.jpg
│ │ ├── 5_P_1448945270390.jpg
│ │ ├── 6_P_1448945167279.jpg
│ │ ├── 7_P_1448945104883.jpg
│ │ ├── 8_P_1448945032810.jpg
│ │ ├── 9_P_1448944791617.jpg
│ │ └── 生鲜_20170719161424_153.jpg
│ └── message
│ └── images
│ ├── 3_P_1448945490837.jpg
│ ├── alipay.jpg
│ └── avatar.jpg
├── Readme.md
├── req_shop.txt
├── static
│ ├── fonts
│ │ ├── iconfont.60cf513.ttf
│ │ └── iconfont.fcaaa27.eot
│ ├── images
│ │ └── loginBg1.23c7104.jpg
│ └── index.entry.js
├── templates
│ ├── api.html
│ └── index.html
├── test_sentry
│ ├── __init__.py
│ └── sentry_test.py
├── VueDjangoFrameWorkShop
│ ├── __init__.py
│ ├── local_settings.py
│ ├── settings.py
│ ├── urls.py
│ └── wsgi.py
└── vue_shop.sql
340 directories, 1464 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论