├── .gitattributes ├── .gitignore ├── .idea ├── MxShop.iml ├── deployment.xml ├── misc.xml ├── modules.xml ├── webServers.xml └── workspace.xml ├── MxShop ├── __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 ├── README.md ├── apps ├── __init__.py ├── goods │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── admin.cpython-36.pyc │ │ ├── adminx.cpython-36.pyc │ │ ├── apps.cpython-36.pyc │ │ ├── filters.cpython-36.pyc │ │ ├── models.cpython-36.pyc │ │ ├── serializers.cpython-36.pyc │ │ ├── view_base.cpython-36.pyc │ │ └── views.cpython-36.pyc │ ├── admin.py │ ├── adminx.py │ ├── apps.py │ ├── filters.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20180409_0246.py │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ ├── 0001_initial.cpython-36.pyc │ │ │ ├── 0002_auto_20180409_0246.cpython-36.pyc │ │ │ └── __init__.cpython-36.pyc │ ├── models.py │ ├── serializers.py │ ├── tests.py │ ├── view_base.py │ └── views.py ├── trade │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── admin.cpython-36.pyc │ │ ├── adminx.cpython-36.pyc │ │ ├── apps.cpython-36.pyc │ │ ├── models.cpython-36.pyc │ │ ├── serializers.cpython-36.pyc │ │ └── views.cpython-36.pyc │ ├── admin.py │ ├── adminx.py │ ├── apps.py │ ├── keys │ │ ├── alipay_key_2048.txt │ │ ├── private_2048.txt │ │ └── pub_2048.txt │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20180213_1939.py │ │ ├── 0003_auto_20180409_0246.py │ │ ├── 0004_auto_20180409_2138.py │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ ├── 0001_initial.cpython-36.pyc │ │ │ ├── 0002_auto_20180213_1939.cpython-36.pyc │ │ │ ├── 0003_auto_20180409_0246.cpython-36.pyc │ │ │ ├── 0004_auto_20180409_2138.cpython-36.pyc │ │ │ └── __init__.cpython-36.pyc │ ├── models.py │ ├── serializers.py │ ├── tests.py │ └── views.py ├── user_operation │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── admin.cpython-36.pyc │ │ ├── adminx.cpython-36.pyc │ │ ├── apps.cpython-36.pyc │ │ ├── models.cpython-36.pyc │ │ ├── serializers.cpython-36.pyc │ │ ├── signals.cpython-36.pyc │ │ └── views.cpython-36.pyc │ ├── admin.py │ ├── adminx.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20180213_1939.py │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ ├── 0001_initial.cpython-36.pyc │ │ │ ├── 0002_auto_20180213_1939.cpython-36.pyc │ │ │ └── __init__.cpython-36.pyc │ ├── models.py │ ├── serializers.py │ ├── signals.py │ ├── tests.py │ └── views.py ├── users │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── admin.cpython-36.pyc │ │ ├── adminx.cpython-36.pyc │ │ ├── apps.cpython-36.pyc │ │ ├── models.cpython-36.pyc │ │ ├── serializers.cpython-36.pyc │ │ ├── signals.cpython-36.pyc │ │ └── views.cpython-36.pyc │ ├── admin.py │ ├── adminx.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20180409_0246.py │ │ ├── 0003_auto_20180414_1407.py │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ ├── 0001_initial.cpython-36.pyc │ │ │ ├── 0002_auto_20180409_0246.cpython-36.pyc │ │ │ ├── 0003_auto_20180414_1407.cpython-36.pyc │ │ │ └── __init__.cpython-36.pyc │ ├── models.py │ ├── serializers.py │ ├── signals.py │ ├── tests.py │ └── views.py └── utils │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── alipay.cpython-36.pyc │ ├── permissions.cpython-36.pyc │ └── yunpian.cpython-36.pyc │ ├── alipay.py │ ├── permissions.py │ └── yunpian.py ├── db.sqlite3 ├── db_tools ├── data │ ├── __pycache__ │ │ ├── category_data.cpython-36.pyc │ │ └── product_data.cpython-36.pyc │ ├── category_data.py │ └── product_data.py ├── import_category_data.py └── import_goods_data.py ├── extra_apps ├── DjangoUeditor │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── commands.cpython-36.pyc │ │ ├── models.cpython-36.pyc │ │ ├── settings.cpython-36.pyc │ │ ├── urls.cpython-36.pyc │ │ ├── views.cpython-36.pyc │ │ └── widgets.cpython-36.pyc │ ├── commands.py │ ├── forms.py │ ├── models.py │ ├── readme.md │ ├── settings.py │ ├── static │ │ └── ueditor │ │ │ ├── UEditorSnapscreen.exe │ │ │ ├── _examples │ │ │ ├── addCustomizeButton.js │ │ │ ├── addCustomizeCombox.js │ │ │ ├── addCustomizeDialog.js │ │ │ ├── charts.html │ │ │ ├── completeDemo.html │ │ │ ├── customPluginDemo.html │ │ │ ├── customToolbarDemo.html │ │ │ ├── customizeDialogPage.html │ │ │ ├── customizeToolbarUIDemo.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 │ │ │ ├── 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 │ │ │ │ │ ├── delimg.png │ │ │ │ │ ├── delimgH.png │ │ │ │ │ ├── empty.png │ │ │ │ │ ├── emptyH.png │ │ │ │ │ ├── eraser.png │ │ │ │ │ ├── redo.png │ │ │ │ │ ├── redoH.png │ │ │ │ │ ├── scale.png │ │ │ │ │ ├── scaleH.png │ │ │ │ │ ├── size.png │ │ │ │ │ ├── undo.png │ │ │ │ │ └── undoH.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 │ │ │ ├── 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 │ │ │ ├── Uploader.class.php │ │ │ ├── action_crawler.php │ │ │ ├── action_list.php │ │ │ ├── action_upload.php │ │ │ ├── config.json │ │ │ └── controller.php │ │ │ ├── themes │ │ │ ├── default │ │ │ │ ├── css │ │ │ │ │ ├── ueditor.css │ │ │ │ │ └── ueditor.min.css │ │ │ │ ├── dialogbase.css │ │ │ │ └── images │ │ │ │ │ ├── anchor.gif │ │ │ │ │ ├── arrow.png │ │ │ │ │ ├── arrow_down.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 │ │ │ ├── SyntaxHighlighter │ │ │ │ ├── shCore.js │ │ │ │ └── shCoreDefault.css │ │ │ ├── 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-more.js │ │ │ │ ├── highcharts-more.src.js │ │ │ │ ├── highcharts.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 │ │ │ ├── video-js │ │ │ │ ├── font │ │ │ │ │ ├── vjs.eot │ │ │ │ │ ├── vjs.svg │ │ │ │ │ ├── vjs.ttf │ │ │ │ │ └── vjs.woff │ │ │ │ ├── video-js.css │ │ │ │ ├── video-js.min.css │ │ │ │ ├── video-js.swf │ │ │ │ ├── video.dev.js │ │ │ │ └── video.js │ │ │ ├── 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 │ ├── templates │ │ ├── ueditor.html │ │ └── ueditor_old.html │ ├── test_try.py │ ├── urls.py │ ├── utils.py │ ├── views.py │ └── widgets.py ├── __init__.py ├── rest_framework │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── apps.cpython-36.pyc │ │ ├── authentication.cpython-36.pyc │ │ ├── checks.cpython-36.pyc │ │ ├── compat.cpython-36.pyc │ │ ├── documentation.cpython-36.pyc │ │ ├── exceptions.cpython-36.pyc │ │ ├── fields.cpython-36.pyc │ │ ├── filters.cpython-36.pyc │ │ ├── generics.cpython-36.pyc │ │ ├── metadata.cpython-36.pyc │ │ ├── mixins.cpython-36.pyc │ │ ├── models.cpython-36.pyc │ │ ├── negotiation.cpython-36.pyc │ │ ├── pagination.cpython-36.pyc │ │ ├── parsers.cpython-36.pyc │ │ ├── permissions.cpython-36.pyc │ │ ├── relations.cpython-36.pyc │ │ ├── renderers.cpython-36.pyc │ │ ├── request.cpython-36.pyc │ │ ├── response.cpython-36.pyc │ │ ├── reverse.cpython-36.pyc │ │ ├── routers.cpython-36.pyc │ │ ├── serializers.cpython-36.pyc │ │ ├── settings.cpython-36.pyc │ │ ├── status.cpython-36.pyc │ │ ├── throttling.cpython-36.pyc │ │ ├── urlpatterns.cpython-36.pyc │ │ ├── urls.cpython-36.pyc │ │ ├── validators.cpython-36.pyc │ │ ├── views.cpython-36.pyc │ │ └── viewsets.cpython-36.pyc │ ├── apps.py │ ├── authentication.py │ ├── authtoken │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── admin.cpython-36.pyc │ │ │ ├── apps.cpython-36.pyc │ │ │ ├── models.cpython-36.pyc │ │ │ ├── serializers.cpython-36.pyc │ │ │ └── views.cpython-36.pyc │ │ ├── admin.py │ │ ├── apps.py │ │ ├── management │ │ │ ├── __init__.py │ │ │ └── commands │ │ │ │ ├── __init__.py │ │ │ │ └── drf_create_token.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_auto_20160226_1747.py │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ ├── 0001_initial.cpython-36.pyc │ │ │ │ ├── 0002_auto_20160226_1747.cpython-36.pyc │ │ │ │ └── __init__.cpython-36.pyc │ │ ├── models.py │ │ ├── serializers.py │ │ └── views.py │ ├── checks.py │ ├── compat.py │ ├── decorators.py │ ├── documentation.py │ ├── exceptions.py │ ├── fields.py │ ├── filters.py │ ├── generics.py │ ├── locale │ │ ├── ach │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── ar │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── be │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── ca │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── ca_ES │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── cs │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── da │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── de │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── el │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── el_GR │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── en_AU │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── en_CA │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── en_US │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── es │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── et │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── fa │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── fa_IR │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── fi │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── fr │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── fr_CA │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── gl │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── gl_ES │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── he_IL │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── hu │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── id │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── it │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── ja │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── ko_KR │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── lv │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── mk │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── nb │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── nl │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── nn │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── no │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── pl │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── pt │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── pt_BR │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── pt_PT │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── ro │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── ru │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── sk │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── sl │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── sv │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── tr │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── tr_TR │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── uk │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── vi │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── zh_CN │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── zh_Hans │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── zh_Hant │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ └── zh_TW │ │ │ └── LC_MESSAGES │ │ │ └── django.mo │ ├── 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 │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── generators.cpython-36.pyc │ │ │ ├── inspectors.cpython-36.pyc │ │ │ ├── utils.cpython-36.pyc │ │ │ └── views.cpython-36.pyc │ │ ├── generators.py │ │ ├── inspectors.py │ │ ├── utils.py │ │ └── views.py │ ├── serializers.py │ ├── settings.py │ ├── static │ │ └── rest_framework │ │ │ ├── css │ │ │ ├── bootstrap-tweaks.css │ │ │ ├── bootstrap.min.css │ │ │ ├── default.css │ │ │ └── prettify.css │ │ │ ├── docs │ │ │ ├── css │ │ │ │ ├── base.css │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ ├── bootstrap.min.css │ │ │ │ ├── font-awesome-4.0.3.css │ │ │ │ ├── highlight.css │ │ │ │ └── jquery.json-view.min.css │ │ │ ├── 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 │ │ │ │ ├── favicon.ico │ │ │ │ └── grid.png │ │ │ └── js │ │ │ │ ├── api.js │ │ │ │ ├── bootstrap.min.js │ │ │ │ ├── highlight.pack.js │ │ │ │ ├── jquery-1.10.2.min.js │ │ │ │ └── jquery.json-view.min.js │ │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ ├── img │ │ │ ├── glyphicons-halflings-white.png │ │ │ ├── glyphicons-halflings.png │ │ │ └── grid.png │ │ │ └── js │ │ │ ├── ajax-form.js │ │ │ ├── bootstrap.min.js │ │ │ ├── coreapi-0.1.1.js │ │ │ ├── csrf.js │ │ │ ├── default.js │ │ │ ├── jquery-1.12.4.min.js │ │ │ └── prettify-min.js │ ├── status.py │ ├── templates │ │ └── rest_framework │ │ │ ├── admin.html │ │ │ ├── admin │ │ │ ├── detail.html │ │ │ ├── dict_value.html │ │ │ ├── list.html │ │ │ ├── list_value.html │ │ │ └── simple_list_value.html │ │ │ ├── api.html │ │ │ ├── base.html │ │ │ ├── docs │ │ │ ├── auth │ │ │ │ ├── basic.html │ │ │ │ ├── session.html │ │ │ │ └── token.html │ │ │ ├── document.html │ │ │ ├── error.html │ │ │ ├── index.html │ │ │ ├── interact.html │ │ │ ├── langs │ │ │ │ ├── javascript-intro.html │ │ │ │ ├── javascript.html │ │ │ │ ├── python-intro.html │ │ │ │ ├── python.html │ │ │ │ ├── shell-intro.html │ │ │ │ └── shell.html │ │ │ ├── link.html │ │ │ └── sidebar.html │ │ │ ├── filters │ │ │ ├── base.html │ │ │ ├── ordering.html │ │ │ └── search.html │ │ │ ├── horizontal │ │ │ ├── checkbox.html │ │ │ ├── checkbox_multiple.html │ │ │ ├── fieldset.html │ │ │ ├── form.html │ │ │ ├── input.html │ │ │ ├── list_fieldset.html │ │ │ ├── radio.html │ │ │ ├── select.html │ │ │ ├── select_multiple.html │ │ │ └── textarea.html │ │ │ ├── inline │ │ │ ├── checkbox.html │ │ │ ├── checkbox_multiple.html │ │ │ ├── fieldset.html │ │ │ ├── form.html │ │ │ ├── input.html │ │ │ ├── list_fieldset.html │ │ │ ├── radio.html │ │ │ ├── select.html │ │ │ ├── select_multiple.html │ │ │ └── textarea.html │ │ │ ├── login.html │ │ │ ├── login_base.html │ │ │ ├── pagination │ │ │ ├── numbers.html │ │ │ └── previous_and_next.html │ │ │ ├── raw_data_form.html │ │ │ ├── schema.js │ │ │ └── vertical │ │ │ ├── checkbox.html │ │ │ ├── checkbox_multiple.html │ │ │ ├── fieldset.html │ │ │ ├── form.html │ │ │ ├── input.html │ │ │ ├── list_fieldset.html │ │ │ ├── radio.html │ │ │ ├── select.html │ │ │ ├── select_multiple.html │ │ │ └── textarea.html │ ├── templatetags │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ └── rest_framework.cpython-36.pyc │ │ └── rest_framework.py │ ├── test.py │ ├── throttling.py │ ├── urlpatterns.py │ ├── urls.py │ ├── utils │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── breadcrumbs.cpython-36.pyc │ │ │ ├── encoders.cpython-36.pyc │ │ │ ├── field_mapping.cpython-36.pyc │ │ │ ├── formatting.cpython-36.pyc │ │ │ ├── html.cpython-36.pyc │ │ │ ├── humanize_datetime.cpython-36.pyc │ │ │ ├── json.cpython-36.pyc │ │ │ ├── mediatypes.cpython-36.pyc │ │ │ ├── model_meta.cpython-36.pyc │ │ │ ├── representation.cpython-36.pyc │ │ │ ├── serializer_helpers.cpython-36.pyc │ │ │ └── urls.cpython-36.pyc │ │ ├── breadcrumbs.py │ │ ├── encoders.py │ │ ├── field_mapping.py │ │ ├── formatting.py │ │ ├── html.py │ │ ├── humanize_datetime.py │ │ ├── json.py │ │ ├── mediatypes.py │ │ ├── model_meta.py │ │ ├── representation.py │ │ ├── serializer_helpers.py │ │ └── urls.py │ ├── validators.py │ ├── versioning.py │ ├── views.py │ └── viewsets.py └── xadmin │ ├── .tx │ └── config │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── adminx.cpython-36.pyc │ ├── apps.cpython-36.pyc │ ├── filters.cpython-36.pyc │ ├── forms.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 │ ├── adminx.py │ ├── apps.py │ ├── filters.py │ ├── forms.py │ ├── layout.py │ ├── locale │ ├── de_DE │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ ├── django.po │ │ │ ├── djangojs.mo │ │ │ └── djangojs.po │ ├── en │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ ├── django.po │ │ │ ├── djangojs.mo │ │ │ └── djangojs.po │ ├── es_MX │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ ├── django.po │ │ │ ├── djangojs.mo │ │ │ └── djangojs.po │ ├── eu │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ ├── django.po │ │ │ ├── djangojs.mo │ │ │ └── djangojs.po │ ├── id_ID │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ ├── django.po │ │ │ ├── djangojs.mo │ │ │ └── djangojs.po │ ├── ja │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ ├── django.po │ │ │ ├── djangojs.mo │ │ │ └── djangojs.po │ ├── lt │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ ├── django.po │ │ │ ├── djangojs.mo │ │ │ └── djangojs.po │ ├── nl_NL │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ ├── django.po │ │ │ ├── djangojs.mo │ │ │ └── djangojs.po │ ├── pl │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ ├── django.po │ │ │ ├── djangojs.mo │ │ │ └── djangojs.po │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ ├── django.po │ │ │ ├── djangojs.mo │ │ │ └── djangojs.po │ ├── ru_RU │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ ├── django.po │ │ │ ├── djangojs.mo │ │ │ └── djangojs.po │ └── zh_Hans │ │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.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 │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── actions.cpython-36.pyc │ │ ├── aggregation.cpython-36.pyc │ │ ├── ajax.cpython-36.pyc │ │ ├── auth.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 │ │ ├── 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 │ ├── 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 │ ├── 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.quick-form.js │ │ ├── xadmin.plugin.quickfilter.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-transfer.js │ │ └── xadmin.widget.select.js │ │ └── vendor │ │ ├── autotype │ │ └── index.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-latin.js │ │ │ ├── bootstrap-datepicker.rs.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 │ │ ├── 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 │ │ ├── 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-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 │ │ ├── jquery │ │ ├── jquery.js │ │ └── jquery.min.js │ │ ├── load-image │ │ ├── load-image.js │ │ └── load-image.min.js │ │ ├── select2 │ │ ├── select2-spinner.gif │ │ ├── select2.css │ │ ├── select2.js │ │ ├── select2.min.js │ │ ├── select2.png │ │ ├── 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 │ │ └── 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 │ │ ├── field_value.html │ │ ├── field_value_td.html │ │ ├── fieldset.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 │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── base.cpython-36.pyc │ │ ├── dashboard.cpython-36.pyc │ │ ├── delete.cpython-36.pyc │ │ ├── detail.cpython-36.pyc │ │ ├── edit.cpython-36.pyc │ │ ├── form.cpython-36.pyc │ │ ├── list.cpython-36.pyc │ │ └── website.cpython-36.pyc │ ├── base.py │ ├── dashboard.py │ ├── delete.py │ ├── detail.py │ ├── edit.py │ ├── form.py │ ├── list.py │ └── website.py │ └── widgets.py ├── manage.py ├── media ├── 15_P_1448947257324.jpg ├── 15_P_1448947257324_2GYL8bG.jpg ├── 2_20170719161405_249.jpg ├── 2_20170719161405_249_VXtw0x7.jpg ├── 2_20170719161405_249_jIDZ8BP.jpg ├── 2_20170719161405_249_vK49DiO.jpg ├── 2_20170719161435_381.jpg ├── 2_P_1448945810202.jpg ├── 2_P_1448945810202_lGp49nw.jpg ├── 2_P_1448945810202_lGp49nw_1sYwcKQ.jpg ├── 2_P_1448945810202_lGp49nw_QMVQzoQ.jpg ├── 2_P_1448945810202_tFI76bj.jpg ├── 9_P_1448944791617.jpg ├── 9_P_1448944791617_NEerWKF.jpg ├── banner │ ├── 1.jpg │ ├── 9_P_1448944791617.jpg │ ├── banner1.jpg │ ├── banner1_55xPGUL.jpg │ ├── banner2.jpg │ ├── banner2_eMr2qt0.jpg │ ├── banner3.jpg │ └── banner3_0TEbBYq.jpg ├── brands │ ├── lyfs-1.jpg │ ├── lyfs-1_UxGmYAM.jpg │ ├── lyfs-2.jpg │ ├── scsg-2.jpg │ ├── scsg-2_G6LV34f.jpg │ ├── scsg-2_G6LV34f_RBrrmL1.jpg │ ├── scsg-2_s2g3L7M.jpg │ ├── scsg-3.jpg │ ├── sxsp-1.jpg │ ├── sxsp-1_HPZZvbI.jpg │ ├── sxsp-1_HPZZvbI_9CC6gjo.jpg │ ├── sxsp-1_KDntI6h.jpg │ ├── sxsp-1_cqNZz40.jpg │ ├── sxsp-2.jpg │ ├── sxsp-3.jpg │ ├── sxsp-3_jG6lwp4.jpg │ ├── sxsp-3_jG6lwp4_Juwdfys.jpg │ ├── sxsp-3_p6QnMEd.jpg │ └── sxsp-3_p6QnMEd_rNwnYWd.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 │ │ ├── 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_20170719161405_249.jpg │ │ ├── 2_20170719161414_628.jpg │ │ ├── 2_20170719161435_381.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 │ ├── 胡歌.jpg │ ├── 胡歌_jTtLOIp.jpg │ └── 胡歌_oFeyttN.jpg ├── requirements.txt ├── static ├── fonts │ ├── iconfont.60cf513.ttf │ └── iconfont.fcaaa27.eot ├── images │ └── loginBg1.23c7104.jpg └── index.entry.js └── templates └── index.html /.gitattributes: -------------------------------------------------------------------------------- 1 | 2 | *.js linguist-language=python 3 | *.css linguist-language=python 4 | *.html linguist-language=python 5 | -------------------------------------------------------------------------------- /.idea/deployment.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /MxShop/__init__.py: -------------------------------------------------------------------------------- 1 | import pymysql 2 | pymysql.install_as_MySQLdb() 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /MxShop/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/MxShop/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /MxShop/__pycache__/settings.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/MxShop/__pycache__/settings.cpython-36.pyc -------------------------------------------------------------------------------- /MxShop/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/MxShop/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /MxShop/__pycache__/wsgi.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/MxShop/__pycache__/wsgi.cpython-36.pyc -------------------------------------------------------------------------------- /MxShop/wsgi.py: -------------------------------------------------------------------------------- 1 | """ 2 | WSGI config for MxShop project. 3 | 4 | It exposes the WSGI callable as a module-level variable named ``application``. 5 | 6 | For more information on this file, see 7 | https://docs.djangoproject.com/en/2.0/howto/deployment/wsgi/ 8 | """ 9 | 10 | import os 11 | 12 | from django.core.wsgi import get_wsgi_application 13 | 14 | os.environ.setdefault("DJANGO_SETTINGS_MODULE", "MxShop.settings") 15 | 16 | application = get_wsgi_application() 17 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # MxShop 2 | Django REST framework + vue 打造生鲜超市
3 | 4 | ## 环境 5 | python: 3.6.4
6 | Django: 2.0.2 7 | ### MyBlog 8 | 我的博客中有对应项目详细教程 9 | [Cnblog](http://www.cnblogs.com/derek1184405959/p/8733194.html)
10 | ### xadmin下载地址 11 | [点击下载](https://github.com/sshwsfc/xadmin/tree/django2)
12 | ### 富文本编辑器Ueditor下载地址 13 | [点击下载](https://github.com/twz915/DjangoUeditor3/)
14 | 15 | 16 | -------------------------------------------------------------------------------- /apps/__init__.py: -------------------------------------------------------------------------------- 1 | import pymysql 2 | pymysql.install_as_MySQLdb() -------------------------------------------------------------------------------- /apps/goods/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | 3 | default_app_config = 'goods.apps.GoodsConfig' -------------------------------------------------------------------------------- /apps/goods/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/apps/goods/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /apps/goods/__pycache__/admin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/apps/goods/__pycache__/admin.cpython-36.pyc -------------------------------------------------------------------------------- /apps/goods/__pycache__/adminx.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/apps/goods/__pycache__/adminx.cpython-36.pyc -------------------------------------------------------------------------------- /apps/goods/__pycache__/apps.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/apps/goods/__pycache__/apps.cpython-36.pyc -------------------------------------------------------------------------------- /apps/goods/__pycache__/filters.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/apps/goods/__pycache__/filters.cpython-36.pyc -------------------------------------------------------------------------------- /apps/goods/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/apps/goods/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /apps/goods/__pycache__/serializers.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/apps/goods/__pycache__/serializers.cpython-36.pyc -------------------------------------------------------------------------------- /apps/goods/__pycache__/view_base.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/apps/goods/__pycache__/view_base.cpython-36.pyc -------------------------------------------------------------------------------- /apps/goods/__pycache__/views.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/apps/goods/__pycache__/views.cpython-36.pyc -------------------------------------------------------------------------------- /apps/goods/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /apps/goods/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class GoodsConfig(AppConfig): 5 | name = 'goods' 6 | verbose_name = "商品管理" 7 | 8 | -------------------------------------------------------------------------------- /apps/goods/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/apps/goods/migrations/__init__.py -------------------------------------------------------------------------------- /apps/goods/migrations/__pycache__/0001_initial.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/apps/goods/migrations/__pycache__/0001_initial.cpython-36.pyc -------------------------------------------------------------------------------- /apps/goods/migrations/__pycache__/0002_auto_20180409_0246.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/apps/goods/migrations/__pycache__/0002_auto_20180409_0246.cpython-36.pyc -------------------------------------------------------------------------------- /apps/goods/migrations/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/apps/goods/migrations/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /apps/goods/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /apps/trade/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | 3 | default_app_config = 'trade.apps.TradeConfig' -------------------------------------------------------------------------------- /apps/trade/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/apps/trade/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /apps/trade/__pycache__/admin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/apps/trade/__pycache__/admin.cpython-36.pyc -------------------------------------------------------------------------------- /apps/trade/__pycache__/adminx.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/apps/trade/__pycache__/adminx.cpython-36.pyc -------------------------------------------------------------------------------- /apps/trade/__pycache__/apps.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/apps/trade/__pycache__/apps.cpython-36.pyc -------------------------------------------------------------------------------- /apps/trade/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/apps/trade/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /apps/trade/__pycache__/serializers.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/apps/trade/__pycache__/serializers.cpython-36.pyc -------------------------------------------------------------------------------- /apps/trade/__pycache__/views.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/apps/trade/__pycache__/views.cpython-36.pyc -------------------------------------------------------------------------------- /apps/trade/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /apps/trade/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class TradeConfig(AppConfig): 5 | name = 'trade' 6 | verbose_name = "交易管理" 7 | -------------------------------------------------------------------------------- /apps/trade/keys/alipay_key_2048.txt: -------------------------------------------------------------------------------- 1 | -----BEGIN PRIVATE KEY----- 2 | MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzScwRBjg0xRZwtXKRRgM9TZ0fcVAa/VrbYzG+lnBHJ+0y/AjE0TG5iNYo+vP9dd8p/eMvuAQri1V1KbziyToOe+iGwE3jEXWv55u3vVToHjs1S2vIOo/OheOlMTktzOtOt6Yrvjyu+6uaPx3qUxoLYX4a2bNqDTY0YL8yc3UXuGltOR7FFfpyEEowYl81OARBMkeiZIw2G0Vzqv5MA/N7rxE/wbmecAiEReZGpATx9MC1AVK0JlrhuEqR0HsKspeioKEDF7mYTW3IsYIg7lFo/nohdQBFGXv+ba5I/b9bIbfle1aWRFQmUoGIl8F7byCiDfGd1ftUluosqyQgm2OxQIDAQAB 3 | -----END PRIVATE KEY----- -------------------------------------------------------------------------------- /apps/trade/keys/pub_2048.txt: -------------------------------------------------------------------------------- 1 | -----BEGIN PRIVATE KEY----- 2 | MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAogfMy5btl1G22sMQGURlM8Fo+m7jbq+8RIut9kLwIIAOF15VUBJfBCHFdCzM2Yx6l1hJOE40q7YZpRD75ho+6JOd+AJDrqJ0Q3ku7yRQaqvjn8YDhd6Ou0iV7izr14ILAjzhiH1piACCRGIWXGHvQZPemVkajfInJGGdeRbT3rw1WN61EgV4b1m28yJ2t4WJvYdEOxxQK3MgOXHCrBlppB1iixyTivbVzLkXfcbCXtKyYpOCYnHYfD60J51WpVTo0zB+uZHUlHpGYCcA6ahgx4qBHAYsawKnT2BN5YOzSrTC3VouyWIf+m2SiWV6szEBYjAVMfTUwSC24XZUnJlPoQIDAQAB 3 | -----END PRIVATE KEY----- -------------------------------------------------------------------------------- /apps/trade/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/apps/trade/migrations/__init__.py -------------------------------------------------------------------------------- /apps/trade/migrations/__pycache__/0001_initial.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/apps/trade/migrations/__pycache__/0001_initial.cpython-36.pyc -------------------------------------------------------------------------------- /apps/trade/migrations/__pycache__/0002_auto_20180213_1939.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/apps/trade/migrations/__pycache__/0002_auto_20180213_1939.cpython-36.pyc -------------------------------------------------------------------------------- /apps/trade/migrations/__pycache__/0003_auto_20180409_0246.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/apps/trade/migrations/__pycache__/0003_auto_20180409_0246.cpython-36.pyc -------------------------------------------------------------------------------- /apps/trade/migrations/__pycache__/0004_auto_20180409_2138.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/apps/trade/migrations/__pycache__/0004_auto_20180409_2138.cpython-36.pyc -------------------------------------------------------------------------------- /apps/trade/migrations/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/apps/trade/migrations/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /apps/trade/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /apps/user_operation/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | 3 | default_app_config = 'user_operation.apps.UserOperationConfig' -------------------------------------------------------------------------------- /apps/user_operation/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/apps/user_operation/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /apps/user_operation/__pycache__/admin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/apps/user_operation/__pycache__/admin.cpython-36.pyc -------------------------------------------------------------------------------- /apps/user_operation/__pycache__/adminx.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/apps/user_operation/__pycache__/adminx.cpython-36.pyc -------------------------------------------------------------------------------- /apps/user_operation/__pycache__/apps.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/apps/user_operation/__pycache__/apps.cpython-36.pyc -------------------------------------------------------------------------------- /apps/user_operation/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/apps/user_operation/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /apps/user_operation/__pycache__/serializers.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/apps/user_operation/__pycache__/serializers.cpython-36.pyc -------------------------------------------------------------------------------- /apps/user_operation/__pycache__/signals.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/apps/user_operation/__pycache__/signals.cpython-36.pyc -------------------------------------------------------------------------------- /apps/user_operation/__pycache__/views.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/apps/user_operation/__pycache__/views.cpython-36.pyc -------------------------------------------------------------------------------- /apps/user_operation/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /apps/user_operation/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class UserOperationConfig(AppConfig): 5 | name = 'user_operation' 6 | verbose_name = "操作管理" 7 | 8 | def ready(self): 9 | import user_operation.signals 10 | -------------------------------------------------------------------------------- /apps/user_operation/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/apps/user_operation/migrations/__init__.py -------------------------------------------------------------------------------- /apps/user_operation/migrations/__pycache__/0001_initial.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/apps/user_operation/migrations/__pycache__/0001_initial.cpython-36.pyc -------------------------------------------------------------------------------- /apps/user_operation/migrations/__pycache__/0002_auto_20180213_1939.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/apps/user_operation/migrations/__pycache__/0002_auto_20180213_1939.cpython-36.pyc -------------------------------------------------------------------------------- /apps/user_operation/migrations/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/apps/user_operation/migrations/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /apps/user_operation/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /apps/users/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | 3 | default_app_config = 'users.apps.UsersConfig' -------------------------------------------------------------------------------- /apps/users/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/apps/users/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /apps/users/__pycache__/admin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/apps/users/__pycache__/admin.cpython-36.pyc -------------------------------------------------------------------------------- /apps/users/__pycache__/adminx.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/apps/users/__pycache__/adminx.cpython-36.pyc -------------------------------------------------------------------------------- /apps/users/__pycache__/apps.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/apps/users/__pycache__/apps.cpython-36.pyc -------------------------------------------------------------------------------- /apps/users/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/apps/users/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /apps/users/__pycache__/serializers.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/apps/users/__pycache__/serializers.cpython-36.pyc -------------------------------------------------------------------------------- /apps/users/__pycache__/signals.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/apps/users/__pycache__/signals.cpython-36.pyc -------------------------------------------------------------------------------- /apps/users/__pycache__/views.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/apps/users/__pycache__/views.cpython-36.pyc -------------------------------------------------------------------------------- /apps/users/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /apps/users/apps.py: -------------------------------------------------------------------------------- 1 | # users/apps.py 2 | 3 | from django.apps import AppConfig 4 | 5 | class UsersConfig(AppConfig): 6 | name = 'users' 7 | verbose_name = "用户管理" 8 | 9 | def ready(self): 10 | import users.signals 11 | -------------------------------------------------------------------------------- /apps/users/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/apps/users/migrations/__init__.py -------------------------------------------------------------------------------- /apps/users/migrations/__pycache__/0001_initial.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/apps/users/migrations/__pycache__/0001_initial.cpython-36.pyc -------------------------------------------------------------------------------- /apps/users/migrations/__pycache__/0002_auto_20180409_0246.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/apps/users/migrations/__pycache__/0002_auto_20180409_0246.cpython-36.pyc -------------------------------------------------------------------------------- /apps/users/migrations/__pycache__/0003_auto_20180414_1407.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/apps/users/migrations/__pycache__/0003_auto_20180414_1407.cpython-36.pyc -------------------------------------------------------------------------------- /apps/users/migrations/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/apps/users/migrations/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /apps/users/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /apps/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/apps/utils/__init__.py -------------------------------------------------------------------------------- /apps/utils/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/apps/utils/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /apps/utils/__pycache__/alipay.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/apps/utils/__pycache__/alipay.cpython-36.pyc -------------------------------------------------------------------------------- /apps/utils/__pycache__/permissions.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/apps/utils/__pycache__/permissions.cpython-36.pyc -------------------------------------------------------------------------------- /apps/utils/__pycache__/yunpian.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/apps/utils/__pycache__/yunpian.cpython-36.pyc -------------------------------------------------------------------------------- /db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/db.sqlite3 -------------------------------------------------------------------------------- /db_tools/data/__pycache__/category_data.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/db_tools/data/__pycache__/category_data.cpython-36.pyc -------------------------------------------------------------------------------- /db_tools/data/__pycache__/product_data.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/db_tools/data/__pycache__/product_data.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/__init__.py -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/__pycache__/commands.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/__pycache__/commands.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/__pycache__/settings.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/__pycache__/settings.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/__pycache__/views.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/__pycache__/views.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/__pycache__/widgets.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/__pycache__/widgets.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/UEditorSnapscreen.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/UEditorSnapscreen.exe -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/fileTypeImages/icon_chm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/fileTypeImages/icon_chm.gif -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/fileTypeImages/icon_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/fileTypeImages/icon_default.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/fileTypeImages/icon_doc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/fileTypeImages/icon_doc.gif -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/fileTypeImages/icon_exe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/fileTypeImages/icon_exe.gif -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/fileTypeImages/icon_jpg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/fileTypeImages/icon_jpg.gif -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/fileTypeImages/icon_mp3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/fileTypeImages/icon_mp3.gif -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/fileTypeImages/icon_mv.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/fileTypeImages/icon_mv.gif -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/fileTypeImages/icon_pdf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/fileTypeImages/icon_pdf.gif -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/fileTypeImages/icon_ppt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/fileTypeImages/icon_ppt.gif -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/fileTypeImages/icon_psd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/fileTypeImages/icon_psd.gif -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/fileTypeImages/icon_rar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/fileTypeImages/icon_rar.gif -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/fileTypeImages/icon_txt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/fileTypeImages/icon_txt.gif -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/fileTypeImages/icon_xls.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/fileTypeImages/icon_xls.gif -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/images/alignicon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/images/alignicon.gif -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/images/alignicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/images/alignicon.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/images/bg.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/images/file-icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/images/file-icons.gif -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/images/file-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/images/file-icons.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/images/icons.gif -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/images/icons.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/images/image.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/images/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/images/progress.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/images/success.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/images/success.gif -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/images/success.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/background/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/background/images/bg.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/background/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/background/images/success.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/charts/images/charts0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/charts/images/charts0.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/charts/images/charts1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/charts/images/charts1.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/charts/images/charts2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/charts/images/charts2.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/charts/images/charts3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/charts/images/charts3.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/charts/images/charts4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/charts/images/charts4.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/charts/images/charts5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/charts/images/charts5.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/emotion/images/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/emotion/images/0.gif -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/emotion/images/bface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/emotion/images/bface.gif -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/emotion/images/cface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/emotion/images/cface.gif -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/emotion/images/fface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/emotion/images/fface.gif -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/emotion/images/jxface2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/emotion/images/jxface2.gif -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/emotion/images/neweditor-tab-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/emotion/images/neweditor-tab-bg.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/emotion/images/tface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/emotion/images/tface.gif -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/emotion/images/wface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/emotion/images/wface.gif -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/emotion/images/yface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/emotion/images/yface.gif -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/help/help.css: -------------------------------------------------------------------------------- 1 | .wrapper{width: 370px;margin: 10px auto;zoom: 1;} 2 | .tabbody{height: 360px;} 3 | .tabbody .panel{width:100%;height: 360px;position: absolute;background: #fff;} 4 | .tabbody .panel h1{font-size:26px;margin: 5px 0 0 5px;} 5 | .tabbody .panel p{font-size:12px;margin: 5px 0 0 5px;} 6 | .tabbody table{width:90%;line-height: 20px;margin: 5px 0 0 5px;;} 7 | .tabbody table thead{font-weight: bold;line-height: 25px;} -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/image/images/alignicon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/image/images/alignicon.jpg -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/image/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/image/images/bg.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/image/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/image/images/icons.gif -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/image/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/image/images/icons.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/image/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/image/images/image.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/image/images/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/image/images/progress.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/image/images/success.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/image/images/success.gif -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/image/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/image/images/success.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/scrawl/images/addimg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/scrawl/images/addimg.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/scrawl/images/brush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/scrawl/images/brush.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/scrawl/images/delimg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/scrawl/images/delimg.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/scrawl/images/delimgH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/scrawl/images/delimgH.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/scrawl/images/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/scrawl/images/empty.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/scrawl/images/emptyH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/scrawl/images/emptyH.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/scrawl/images/eraser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/scrawl/images/eraser.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/scrawl/images/redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/scrawl/images/redo.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/scrawl/images/redoH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/scrawl/images/redoH.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/scrawl/images/scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/scrawl/images/scale.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/scrawl/images/scaleH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/scrawl/images/scaleH.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/scrawl/images/size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/scrawl/images/size.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/scrawl/images/undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/scrawl/images/undo.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/scrawl/images/undoH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/scrawl/images/undoH.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/table/dragicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/table/dragicon.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/template/images/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/template/images/bg.gif -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/template/images/pre0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/template/images/pre0.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/template/images/pre1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/template/images/pre1.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/template/images/pre2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/template/images/pre2.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/template/images/pre3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/template/images/pre3.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/template/images/pre4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/template/images/pre4.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/video/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/video/images/bg.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/video/images/center_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/video/images/center_focus.jpg -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/video/images/file-icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/video/images/file-icons.gif -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/video/images/file-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/video/images/file-icons.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/video/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/video/images/icons.gif -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/video/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/video/images/icons.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/video/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/video/images/image.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/video/images/left_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/video/images/left_focus.jpg -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/video/images/none_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/video/images/none_focus.jpg -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/video/images/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/video/images/progress.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/video/images/right_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/video/images/right_focus.jpg -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/video/images/success.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/video/images/success.gif -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/video/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/video/images/success.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/wordimage/fClipboard_ueditor.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/wordimage/fClipboard_ueditor.swf -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/wordimage/imageUploader.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/dialogs/wordimage/imageUploader.swf -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/lang/en/images/addimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/lang/en/images/addimage.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/lang/en/images/alldeletebtnhoverskin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/lang/en/images/alldeletebtnhoverskin.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/lang/en/images/alldeletebtnupskin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/lang/en/images/alldeletebtnupskin.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/lang/en/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/lang/en/images/background.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/lang/en/images/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/lang/en/images/button.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/lang/en/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/lang/en/images/copy.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/lang/en/images/deletedisable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/lang/en/images/deletedisable.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/lang/en/images/deleteenable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/lang/en/images/deleteenable.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/lang/en/images/listbackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/lang/en/images/listbackground.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/lang/en/images/localimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/lang/en/images/localimage.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/lang/en/images/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/lang/en/images/music.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/lang/en/images/rotateleftdisable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/lang/en/images/rotateleftdisable.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/lang/en/images/rotateleftenable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/lang/en/images/rotateleftenable.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/lang/en/images/rotaterightdisable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/lang/en/images/rotaterightdisable.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/lang/en/images/rotaterightenable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/lang/en/images/rotaterightenable.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/lang/en/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/lang/en/images/upload.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/lang/zh-cn/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/lang/zh-cn/images/copy.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/lang/zh-cn/images/localimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/lang/zh-cn/images/localimage.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/lang/zh-cn/images/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/lang/zh-cn/images/music.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/lang/zh-cn/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/lang/zh-cn/images/upload.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/themes/default/images/anchor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/anchor.gif -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/themes/default/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/arrow.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/themes/default/images/arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/arrow_down.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/themes/default/images/arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/arrow_up.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/themes/default/images/button-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/button-bg.gif -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/themes/default/images/cancelbutton.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/cancelbutton.gif -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/themes/default/images/charts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/charts.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/themes/default/images/cursor_h.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/cursor_h.gif -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/themes/default/images/cursor_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/cursor_h.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/themes/default/images/cursor_v.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/cursor_v.gif -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/themes/default/images/cursor_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/cursor_v.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/themes/default/images/dialog-title-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/dialog-title-bg.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/themes/default/images/fileScan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/fileScan.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/themes/default/images/highlighted.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/highlighted.gif -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/themes/default/images/icons-all.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/icons-all.gif -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/themes/default/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/icons.gif -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/themes/default/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/icons.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/themes/default/images/loaderror.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/loaderror.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/themes/default/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/loading.gif -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/themes/default/images/lock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/lock.gif -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/themes/default/images/neweditor-tab-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/neweditor-tab-bg.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/themes/default/images/pagebreak.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/pagebreak.gif -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/themes/default/images/scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/scale.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/themes/default/images/sortable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/sortable.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/themes/default/images/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/spacer.gif -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/themes/default/images/sparator_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/sparator_v.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/themes/default/images/table-cell-align.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/table-cell-align.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/themes/default/images/tangram-colorpicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/tangram-colorpicker.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/themes/default/images/toolbar_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/toolbar_bg.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/themes/default/images/unhighlighted.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/unhighlighted.gif -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/themes/default/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/upload.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/themes/default/images/videologo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/videologo.gif -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/themes/default/images/word.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/word.gif -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/themes/default/images/wordpaste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/wordpaste.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/themes/iframe.css: -------------------------------------------------------------------------------- 1 | /*可以在这里添加你自己的css*/ 2 | -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/third-party/snapscreen/UEditorSnapscreen.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/third-party/snapscreen/UEditorSnapscreen.exe -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/third-party/video-js/font/vjs.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/third-party/video-js/font/vjs.eot -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/third-party/video-js/font/vjs.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/third-party/video-js/font/vjs.ttf -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/third-party/video-js/font/vjs.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/third-party/video-js/font/vjs.woff -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/third-party/video-js/video-js.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/third-party/video-js/video-js.swf -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/third-party/webuploader/Uploader.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/third-party/webuploader/Uploader.swf -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/third-party/zeroclipboard/ZeroClipboard.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/DjangoUeditor/static/ueditor/third-party/zeroclipboard/ZeroClipboard.swf -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/templates/ueditor.html: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/test_try.py: -------------------------------------------------------------------------------- 1 | # coding:utf-8 2 | from utils import FileSize 3 | MF = FileSize("36723678") 4 | print(MF) 5 | -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/urls.py: -------------------------------------------------------------------------------- 1 | # coding:utf-8 2 | from django import VERSION 3 | from .widgets import UEditorWidget, AdminUEditorWidget 4 | from .views import get_ueditor_controller 5 | from django.conf.urls import url 6 | 7 | urlpatterns = [ 8 | url(r'^controller/$', get_ueditor_controller), 9 | ] 10 | -------------------------------------------------------------------------------- /extra_apps/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/__init__.py -------------------------------------------------------------------------------- /extra_apps/rest_framework/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/rest_framework/__pycache__/apps.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/__pycache__/apps.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/rest_framework/__pycache__/authentication.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/__pycache__/authentication.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/rest_framework/__pycache__/checks.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/__pycache__/checks.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/rest_framework/__pycache__/compat.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/__pycache__/compat.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/rest_framework/__pycache__/documentation.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/__pycache__/documentation.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/rest_framework/__pycache__/exceptions.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/__pycache__/exceptions.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/rest_framework/__pycache__/fields.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/__pycache__/fields.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/rest_framework/__pycache__/filters.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/__pycache__/filters.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/rest_framework/__pycache__/generics.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/__pycache__/generics.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/rest_framework/__pycache__/metadata.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/__pycache__/metadata.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/rest_framework/__pycache__/mixins.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/__pycache__/mixins.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/rest_framework/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/rest_framework/__pycache__/negotiation.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/__pycache__/negotiation.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/rest_framework/__pycache__/pagination.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/__pycache__/pagination.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/rest_framework/__pycache__/parsers.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/__pycache__/parsers.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/rest_framework/__pycache__/permissions.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/__pycache__/permissions.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/rest_framework/__pycache__/relations.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/__pycache__/relations.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/rest_framework/__pycache__/renderers.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/__pycache__/renderers.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/rest_framework/__pycache__/request.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/__pycache__/request.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/rest_framework/__pycache__/response.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/__pycache__/response.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/rest_framework/__pycache__/reverse.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/__pycache__/reverse.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/rest_framework/__pycache__/routers.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/__pycache__/routers.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/rest_framework/__pycache__/serializers.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/__pycache__/serializers.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/rest_framework/__pycache__/settings.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/__pycache__/settings.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/rest_framework/__pycache__/status.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/__pycache__/status.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/rest_framework/__pycache__/throttling.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/__pycache__/throttling.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/rest_framework/__pycache__/urlpatterns.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/__pycache__/urlpatterns.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/rest_framework/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/rest_framework/__pycache__/validators.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/__pycache__/validators.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/rest_framework/__pycache__/views.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/__pycache__/views.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/rest_framework/__pycache__/viewsets.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/__pycache__/viewsets.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/rest_framework/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class RestFrameworkConfig(AppConfig): 5 | name = 'rest_framework' 6 | verbose_name = "Django REST framework" 7 | 8 | def ready(self): 9 | # Add System checks 10 | from .checks import pagination_system_check # NOQA 11 | -------------------------------------------------------------------------------- /extra_apps/rest_framework/authtoken/__init__.py: -------------------------------------------------------------------------------- 1 | default_app_config = 'rest_framework.authtoken.apps.AuthTokenConfig' 2 | -------------------------------------------------------------------------------- /extra_apps/rest_framework/authtoken/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/authtoken/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/rest_framework/authtoken/__pycache__/admin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/authtoken/__pycache__/admin.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/rest_framework/authtoken/__pycache__/apps.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/authtoken/__pycache__/apps.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/rest_framework/authtoken/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/authtoken/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/rest_framework/authtoken/__pycache__/serializers.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/authtoken/__pycache__/serializers.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/rest_framework/authtoken/__pycache__/views.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/authtoken/__pycache__/views.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/rest_framework/authtoken/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | from rest_framework.authtoken.models import Token 4 | 5 | 6 | class TokenAdmin(admin.ModelAdmin): 7 | list_display = ('key', 'user', 'created') 8 | fields = ('user',) 9 | ordering = ('-created',) 10 | 11 | 12 | admin.site.register(Token, TokenAdmin) 13 | -------------------------------------------------------------------------------- /extra_apps/rest_framework/authtoken/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | from django.utils.translation import ugettext_lazy as _ 3 | 4 | 5 | class AuthTokenConfig(AppConfig): 6 | name = 'rest_framework.authtoken' 7 | verbose_name = _("Auth Token") 8 | -------------------------------------------------------------------------------- /extra_apps/rest_framework/authtoken/management/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/authtoken/management/__init__.py -------------------------------------------------------------------------------- /extra_apps/rest_framework/authtoken/management/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/authtoken/management/commands/__init__.py -------------------------------------------------------------------------------- /extra_apps/rest_framework/authtoken/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/authtoken/migrations/__init__.py -------------------------------------------------------------------------------- /extra_apps/rest_framework/authtoken/migrations/__pycache__/0001_initial.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/authtoken/migrations/__pycache__/0001_initial.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/rest_framework/authtoken/migrations/__pycache__/0002_auto_20160226_1747.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/authtoken/migrations/__pycache__/0002_auto_20160226_1747.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/rest_framework/authtoken/migrations/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/authtoken/migrations/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/rest_framework/locale/ach/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/locale/ach/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /extra_apps/rest_framework/locale/ar/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/locale/ar/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /extra_apps/rest_framework/locale/be/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/locale/be/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /extra_apps/rest_framework/locale/ca/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/locale/ca/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /extra_apps/rest_framework/locale/ca_ES/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/locale/ca_ES/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /extra_apps/rest_framework/locale/cs/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/locale/cs/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /extra_apps/rest_framework/locale/da/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/locale/da/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /extra_apps/rest_framework/locale/de/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/locale/de/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /extra_apps/rest_framework/locale/el/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/locale/el/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /extra_apps/rest_framework/locale/el_GR/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/locale/el_GR/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /extra_apps/rest_framework/locale/en/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/locale/en/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /extra_apps/rest_framework/locale/en_AU/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/locale/en_AU/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /extra_apps/rest_framework/locale/en_CA/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/locale/en_CA/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /extra_apps/rest_framework/locale/en_US/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/locale/en_US/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /extra_apps/rest_framework/locale/es/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/locale/es/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /extra_apps/rest_framework/locale/et/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/locale/et/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /extra_apps/rest_framework/locale/fa/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/locale/fa/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /extra_apps/rest_framework/locale/fa_IR/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/locale/fa_IR/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /extra_apps/rest_framework/locale/fi/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/locale/fi/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /extra_apps/rest_framework/locale/fr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/locale/fr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /extra_apps/rest_framework/locale/fr_CA/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/locale/fr_CA/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /extra_apps/rest_framework/locale/gl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/locale/gl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /extra_apps/rest_framework/locale/gl_ES/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/locale/gl_ES/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /extra_apps/rest_framework/locale/he_IL/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/locale/he_IL/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /extra_apps/rest_framework/locale/hu/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/locale/hu/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /extra_apps/rest_framework/locale/id/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/locale/id/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /extra_apps/rest_framework/locale/it/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/locale/it/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /extra_apps/rest_framework/locale/ja/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/locale/ja/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /extra_apps/rest_framework/locale/ko_KR/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/locale/ko_KR/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /extra_apps/rest_framework/locale/lv/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/locale/lv/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /extra_apps/rest_framework/locale/mk/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/locale/mk/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /extra_apps/rest_framework/locale/nb/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/locale/nb/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /extra_apps/rest_framework/locale/nl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/locale/nl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /extra_apps/rest_framework/locale/nn/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/locale/nn/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /extra_apps/rest_framework/locale/no/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/locale/no/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /extra_apps/rest_framework/locale/pl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/locale/pl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /extra_apps/rest_framework/locale/pt/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/locale/pt/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /extra_apps/rest_framework/locale/pt_BR/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/locale/pt_BR/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /extra_apps/rest_framework/locale/pt_PT/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/locale/pt_PT/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /extra_apps/rest_framework/locale/ro/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/locale/ro/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /extra_apps/rest_framework/locale/ru/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/locale/ru/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /extra_apps/rest_framework/locale/sk/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/locale/sk/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /extra_apps/rest_framework/locale/sl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/locale/sl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /extra_apps/rest_framework/locale/sv/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/locale/sv/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /extra_apps/rest_framework/locale/tr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/locale/tr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /extra_apps/rest_framework/locale/tr_TR/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/locale/tr_TR/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /extra_apps/rest_framework/locale/uk/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/locale/uk/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /extra_apps/rest_framework/locale/vi/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/locale/vi/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /extra_apps/rest_framework/locale/zh_CN/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/locale/zh_CN/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /extra_apps/rest_framework/locale/zh_Hans/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/locale/zh_Hans/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /extra_apps/rest_framework/locale/zh_Hant/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/locale/zh_Hant/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /extra_apps/rest_framework/locale/zh_TW/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/locale/zh_TW/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /extra_apps/rest_framework/models.py: -------------------------------------------------------------------------------- 1 | # Just to keep things like ./manage.py test happy 2 | -------------------------------------------------------------------------------- /extra_apps/rest_framework/schemas/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/schemas/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/rest_framework/schemas/__pycache__/generators.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/schemas/__pycache__/generators.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/rest_framework/schemas/__pycache__/inspectors.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/schemas/__pycache__/inspectors.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/rest_framework/schemas/__pycache__/utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/schemas/__pycache__/utils.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/rest_framework/schemas/__pycache__/views.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/schemas/__pycache__/views.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/rest_framework/static/rest_framework/docs/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/static/rest_framework/docs/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /extra_apps/rest_framework/static/rest_framework/docs/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/static/rest_framework/docs/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /extra_apps/rest_framework/static/rest_framework/docs/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/static/rest_framework/docs/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /extra_apps/rest_framework/static/rest_framework/docs/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/static/rest_framework/docs/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /extra_apps/rest_framework/static/rest_framework/docs/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/static/rest_framework/docs/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /extra_apps/rest_framework/static/rest_framework/docs/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/static/rest_framework/docs/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /extra_apps/rest_framework/static/rest_framework/docs/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/static/rest_framework/docs/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /extra_apps/rest_framework/static/rest_framework/docs/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/static/rest_framework/docs/img/favicon.ico -------------------------------------------------------------------------------- /extra_apps/rest_framework/static/rest_framework/docs/img/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/static/rest_framework/docs/img/grid.png -------------------------------------------------------------------------------- /extra_apps/rest_framework/static/rest_framework/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/static/rest_framework/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /extra_apps/rest_framework/static/rest_framework/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/static/rest_framework/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /extra_apps/rest_framework/static/rest_framework/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/static/rest_framework/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /extra_apps/rest_framework/static/rest_framework/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/static/rest_framework/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /extra_apps/rest_framework/static/rest_framework/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/static/rest_framework/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /extra_apps/rest_framework/static/rest_framework/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/static/rest_framework/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /extra_apps/rest_framework/static/rest_framework/img/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/static/rest_framework/img/grid.png -------------------------------------------------------------------------------- /extra_apps/rest_framework/templates/rest_framework/admin/detail.html: -------------------------------------------------------------------------------- 1 | {% load rest_framework %} 2 | 3 | 4 | {% for key, value in results|items %} 5 | {% if key in details %} 6 | 7 | {% endif %} 8 | {% endfor %} 9 | 10 |
{{ key|capfirst }}{{ value|format_value }}
11 | -------------------------------------------------------------------------------- /extra_apps/rest_framework/templates/rest_framework/admin/dict_value.html: -------------------------------------------------------------------------------- 1 | {% load rest_framework %} 2 | 3 | 4 | {% for k, v in value|items %} 5 | 6 | 7 | 8 | 9 | {% endfor %} 10 | 11 |
{{ k|format_value }}{{ v|format_value }}
12 | -------------------------------------------------------------------------------- /extra_apps/rest_framework/templates/rest_framework/admin/list_value.html: -------------------------------------------------------------------------------- 1 | {% load rest_framework %} 2 | 3 | 4 | {% for item in value %} 5 | 6 | 7 | 8 | 9 | {% endfor %} 10 | 11 |
{{ forloop.counter0 }}{{ item|format_value }}
12 | -------------------------------------------------------------------------------- /extra_apps/rest_framework/templates/rest_framework/admin/simple_list_value.html: -------------------------------------------------------------------------------- 1 | {% load rest_framework %} 2 | {% for item in value %}{% if not forloop.first%},{% endif %} {{item|format_value}}{% endfor %} 3 | -------------------------------------------------------------------------------- /extra_apps/rest_framework/templates/rest_framework/api.html: -------------------------------------------------------------------------------- 1 | {% extends "rest_framework/base.html" %} 2 | 3 | {# Override this template in your own templates directory to customize #} 4 | -------------------------------------------------------------------------------- /extra_apps/rest_framework/templates/rest_framework/docs/langs/javascript-intro.html: -------------------------------------------------------------------------------- 1 | {% load rest_framework %} 2 | {% load staticfiles %} 3 |
{% code html %}
4 | 
5 | {% endcode %}
6 | -------------------------------------------------------------------------------- /extra_apps/rest_framework/templates/rest_framework/docs/langs/python-intro.html: -------------------------------------------------------------------------------- 1 | {% load rest_framework %} 2 |
{% code bash %}# Install the Python client library
3 | $ pip install coreapi{% endcode %}
4 | -------------------------------------------------------------------------------- /extra_apps/rest_framework/templates/rest_framework/docs/langs/shell-intro.html: -------------------------------------------------------------------------------- 1 | {% load rest_framework %} 2 |
{% code bash %}# Install the command line client
3 | $ pip install coreapi-cli{% endcode %}
4 | -------------------------------------------------------------------------------- /extra_apps/rest_framework/templates/rest_framework/docs/langs/shell.html: -------------------------------------------------------------------------------- 1 | {% load rest_framework %} 2 |
{% code bash %}# Load the schema document
3 | $ coreapi get {{ document.url }}{% if schema_format %} --format {{ schema_format }}{% endif %}
4 | 
5 | # Interact with the API endpoint
6 | $ coreapi action {% if section_key %}{{ section_key }} {% endif %}{{ link_key }}{% for field in link.fields %} -p {{ field.name }}=...{% endfor %}{% endcode %}
7 | -------------------------------------------------------------------------------- /extra_apps/rest_framework/templates/rest_framework/horizontal/form.html: -------------------------------------------------------------------------------- 1 | {% load rest_framework %} 2 | {% for field in form %} 3 | {% if not field.read_only %} 4 | {% render_field field style=style %} 5 | {% endif %} 6 | {% endfor %} 7 | -------------------------------------------------------------------------------- /extra_apps/rest_framework/templates/rest_framework/inline/checkbox.html: -------------------------------------------------------------------------------- 1 |
2 |
3 | 7 |
8 |
9 | -------------------------------------------------------------------------------- /extra_apps/rest_framework/templates/rest_framework/inline/fieldset.html: -------------------------------------------------------------------------------- 1 | {% load rest_framework %} 2 | {% for nested_field in field %} 3 | {% if not nested_field.read_only %} 4 | {% render_field nested_field style=style %} 5 | {% endif %} 6 | {% endfor %} 7 | -------------------------------------------------------------------------------- /extra_apps/rest_framework/templates/rest_framework/inline/form.html: -------------------------------------------------------------------------------- 1 | {% load rest_framework %} 2 | {% for field in form %} 3 | {% if not field.read_only %} 4 | {% render_field field style=style %} 5 | {% endif %} 6 | {% endfor %} 7 | -------------------------------------------------------------------------------- /extra_apps/rest_framework/templates/rest_framework/inline/list_fieldset.html: -------------------------------------------------------------------------------- 1 | Lists are not currently supported in HTML input. 2 | -------------------------------------------------------------------------------- /extra_apps/rest_framework/templates/rest_framework/inline/textarea.html: -------------------------------------------------------------------------------- 1 |
2 | {% if field.label %} 3 | 6 | {% endif %} 7 | 8 | 9 |
10 | -------------------------------------------------------------------------------- /extra_apps/rest_framework/templates/rest_framework/login.html: -------------------------------------------------------------------------------- 1 | {% extends "rest_framework/login_base.html" %} 2 | 3 | {# Override this template in your own templates directory to customize #} 4 | -------------------------------------------------------------------------------- /extra_apps/rest_framework/templates/rest_framework/raw_data_form.html: -------------------------------------------------------------------------------- 1 | {% load rest_framework %} 2 | {{ form.non_field_errors }} 3 | {% for field in form %} 4 |
5 | {{ field.label_tag|add_class:"col-sm-2 control-label" }} 6 |
7 | {{ field|add_class:"form-control" }} 8 | {{ field.help_text|safe }} 9 |
10 |
11 | {% endfor %} 12 | -------------------------------------------------------------------------------- /extra_apps/rest_framework/templates/rest_framework/schema.js: -------------------------------------------------------------------------------- 1 | var codec = new window.coreapi.codecs.CoreJSONCodec() 2 | var coreJSON = window.atob('{{ schema }}') 3 | window.schema = codec.decode(coreJSON) 4 | -------------------------------------------------------------------------------- /extra_apps/rest_framework/templates/rest_framework/vertical/fieldset.html: -------------------------------------------------------------------------------- 1 | {% load rest_framework %} 2 | 3 |
4 | {% if field.label %} 5 | 6 | {{ field.label }} 7 | 8 | {% endif %} 9 | 10 | {% for nested_field in field %} 11 | {% if not nested_field.read_only %} 12 | {% render_field nested_field style=style %} 13 | {% endif %} 14 | {% endfor %} 15 |
16 | -------------------------------------------------------------------------------- /extra_apps/rest_framework/templates/rest_framework/vertical/form.html: -------------------------------------------------------------------------------- 1 | {% load rest_framework %} 2 | {% for field in form %} 3 | {% if not field.read_only %} 4 | {% render_field field style=style %} 5 | {% endif %} 6 | {% endfor %} 7 | -------------------------------------------------------------------------------- /extra_apps/rest_framework/templates/rest_framework/vertical/list_fieldset.html: -------------------------------------------------------------------------------- 1 |
2 | {% if field.label %} 3 | 4 | {{ field.label }} 5 | 6 | {% endif %} 7 | 8 |

Lists are not currently supported in HTML input.

9 |
10 | -------------------------------------------------------------------------------- /extra_apps/rest_framework/templatetags/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/templatetags/__init__.py -------------------------------------------------------------------------------- /extra_apps/rest_framework/templatetags/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/templatetags/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/rest_framework/templatetags/__pycache__/rest_framework.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/templatetags/__pycache__/rest_framework.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/rest_framework/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/utils/__init__.py -------------------------------------------------------------------------------- /extra_apps/rest_framework/utils/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/utils/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/rest_framework/utils/__pycache__/breadcrumbs.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/utils/__pycache__/breadcrumbs.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/rest_framework/utils/__pycache__/encoders.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/utils/__pycache__/encoders.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/rest_framework/utils/__pycache__/field_mapping.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/utils/__pycache__/field_mapping.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/rest_framework/utils/__pycache__/formatting.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/utils/__pycache__/formatting.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/rest_framework/utils/__pycache__/html.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/utils/__pycache__/html.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/rest_framework/utils/__pycache__/humanize_datetime.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/utils/__pycache__/humanize_datetime.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/rest_framework/utils/__pycache__/json.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/utils/__pycache__/json.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/rest_framework/utils/__pycache__/mediatypes.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/utils/__pycache__/mediatypes.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/rest_framework/utils/__pycache__/model_meta.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/utils/__pycache__/model_meta.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/rest_framework/utils/__pycache__/representation.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/utils/__pycache__/representation.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/rest_framework/utils/__pycache__/serializer_helpers.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/utils/__pycache__/serializer_helpers.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/rest_framework/utils/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/rest_framework/utils/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/xadmin/.tx/config: -------------------------------------------------------------------------------- 1 | [main] 2 | host = https://www.transifex.com 3 | 4 | [xadmin-core.django] 5 | file_filter = locale//LC_MESSAGES/django.po 6 | source_file = locale/en/LC_MESSAGES/django.po 7 | source_lang = en 8 | type = PO 9 | 10 | [xadmin-core.djangojs] 11 | file_filter = locale//LC_MESSAGES/djangojs.po 12 | source_file = locale/en/LC_MESSAGES/djangojs.po 13 | source_lang = en 14 | type = PO -------------------------------------------------------------------------------- /extra_apps/xadmin/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/xadmin/__pycache__/adminx.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/__pycache__/adminx.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/xadmin/__pycache__/apps.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/__pycache__/apps.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/xadmin/__pycache__/filters.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/__pycache__/filters.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/xadmin/__pycache__/forms.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/__pycache__/forms.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/xadmin/__pycache__/layout.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/__pycache__/layout.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/xadmin/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/xadmin/__pycache__/sites.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/__pycache__/sites.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/xadmin/__pycache__/util.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/__pycache__/util.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/xadmin/__pycache__/vendors.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/__pycache__/vendors.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/xadmin/__pycache__/widgets.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/__pycache__/widgets.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/xadmin/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | from django.core import checks 3 | from django.utils.translation import ugettext_lazy as _ 4 | import xadmin 5 | 6 | 7 | class XAdminConfig(AppConfig): 8 | """Simple AppConfig which does not do automatic discovery.""" 9 | 10 | name = 'xadmin' 11 | verbose_name = _("Administration") 12 | 13 | def ready(self): 14 | self.module.autodiscover() 15 | setattr(xadmin,'site',xadmin.site) 16 | -------------------------------------------------------------------------------- /extra_apps/xadmin/locale/de_DE/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/locale/de_DE/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /extra_apps/xadmin/locale/de_DE/LC_MESSAGES/djangojs.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/locale/de_DE/LC_MESSAGES/djangojs.mo -------------------------------------------------------------------------------- /extra_apps/xadmin/locale/en/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/locale/en/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /extra_apps/xadmin/locale/en/LC_MESSAGES/djangojs.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/locale/en/LC_MESSAGES/djangojs.mo -------------------------------------------------------------------------------- /extra_apps/xadmin/locale/es_MX/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/locale/es_MX/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /extra_apps/xadmin/locale/es_MX/LC_MESSAGES/djangojs.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/locale/es_MX/LC_MESSAGES/djangojs.mo -------------------------------------------------------------------------------- /extra_apps/xadmin/locale/eu/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/locale/eu/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /extra_apps/xadmin/locale/eu/LC_MESSAGES/djangojs.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/locale/eu/LC_MESSAGES/djangojs.mo -------------------------------------------------------------------------------- /extra_apps/xadmin/locale/id_ID/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/locale/id_ID/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /extra_apps/xadmin/locale/id_ID/LC_MESSAGES/djangojs.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/locale/id_ID/LC_MESSAGES/djangojs.mo -------------------------------------------------------------------------------- /extra_apps/xadmin/locale/ja/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/locale/ja/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /extra_apps/xadmin/locale/ja/LC_MESSAGES/djangojs.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/locale/ja/LC_MESSAGES/djangojs.mo -------------------------------------------------------------------------------- /extra_apps/xadmin/locale/lt/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/locale/lt/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /extra_apps/xadmin/locale/lt/LC_MESSAGES/djangojs.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/locale/lt/LC_MESSAGES/djangojs.mo -------------------------------------------------------------------------------- /extra_apps/xadmin/locale/nl_NL/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/locale/nl_NL/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /extra_apps/xadmin/locale/nl_NL/LC_MESSAGES/djangojs.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/locale/nl_NL/LC_MESSAGES/djangojs.mo -------------------------------------------------------------------------------- /extra_apps/xadmin/locale/pl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/locale/pl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /extra_apps/xadmin/locale/pl/LC_MESSAGES/djangojs.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/locale/pl/LC_MESSAGES/djangojs.mo -------------------------------------------------------------------------------- /extra_apps/xadmin/locale/pt_BR/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/locale/pt_BR/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /extra_apps/xadmin/locale/pt_BR/LC_MESSAGES/djangojs.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/locale/pt_BR/LC_MESSAGES/djangojs.mo -------------------------------------------------------------------------------- /extra_apps/xadmin/locale/ru_RU/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/locale/ru_RU/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /extra_apps/xadmin/locale/ru_RU/LC_MESSAGES/djangojs.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/locale/ru_RU/LC_MESSAGES/djangojs.mo -------------------------------------------------------------------------------- /extra_apps/xadmin/locale/zh_Hans/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/locale/zh_Hans/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /extra_apps/xadmin/locale/zh_Hans/LC_MESSAGES/djangojs.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/locale/zh_Hans/LC_MESSAGES/djangojs.mo -------------------------------------------------------------------------------- /extra_apps/xadmin/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/migrations/__init__.py -------------------------------------------------------------------------------- /extra_apps/xadmin/migrations/__pycache__/0001_initial.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/migrations/__pycache__/0001_initial.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/xadmin/migrations/__pycache__/0002_log.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/migrations/__pycache__/0002_log.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/xadmin/migrations/__pycache__/0003_auto_20160715_0100.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/migrations/__pycache__/0003_auto_20160715_0100.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/xadmin/migrations/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/migrations/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/xadmin/plugins/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/plugins/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/xadmin/plugins/__pycache__/actions.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/plugins/__pycache__/actions.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/xadmin/plugins/__pycache__/aggregation.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/plugins/__pycache__/aggregation.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/xadmin/plugins/__pycache__/ajax.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/plugins/__pycache__/ajax.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/xadmin/plugins/__pycache__/auth.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/plugins/__pycache__/auth.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/xadmin/plugins/__pycache__/bookmark.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/plugins/__pycache__/bookmark.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/xadmin/plugins/__pycache__/chart.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/plugins/__pycache__/chart.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/xadmin/plugins/__pycache__/details.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/plugins/__pycache__/details.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/xadmin/plugins/__pycache__/editable.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/plugins/__pycache__/editable.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/xadmin/plugins/__pycache__/export.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/plugins/__pycache__/export.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/xadmin/plugins/__pycache__/filters.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/plugins/__pycache__/filters.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/xadmin/plugins/__pycache__/images.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/plugins/__pycache__/images.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/xadmin/plugins/__pycache__/importexport.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/plugins/__pycache__/importexport.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/xadmin/plugins/__pycache__/inline.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/plugins/__pycache__/inline.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/xadmin/plugins/__pycache__/language.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/plugins/__pycache__/language.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/xadmin/plugins/__pycache__/layout.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/plugins/__pycache__/layout.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/xadmin/plugins/__pycache__/multiselect.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/plugins/__pycache__/multiselect.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/xadmin/plugins/__pycache__/passwords.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/plugins/__pycache__/passwords.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/xadmin/plugins/__pycache__/portal.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/plugins/__pycache__/portal.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/xadmin/plugins/__pycache__/quickfilter.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/plugins/__pycache__/quickfilter.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/xadmin/plugins/__pycache__/quickform.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/plugins/__pycache__/quickform.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/xadmin/plugins/__pycache__/refresh.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/plugins/__pycache__/refresh.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/xadmin/plugins/__pycache__/relate.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/plugins/__pycache__/relate.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/xadmin/plugins/__pycache__/relfield.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/plugins/__pycache__/relfield.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/xadmin/plugins/__pycache__/sitemenu.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/plugins/__pycache__/sitemenu.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/xadmin/plugins/__pycache__/sortablelist.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/plugins/__pycache__/sortablelist.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/xadmin/plugins/__pycache__/themes.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/plugins/__pycache__/themes.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/xadmin/plugins/__pycache__/topnav.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/plugins/__pycache__/topnav.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/xadmin/plugins/__pycache__/ueditor.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/plugins/__pycache__/ueditor.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/xadmin/plugins/__pycache__/utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/plugins/__pycache__/utils.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/xadmin/plugins/__pycache__/wizard.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/plugins/__pycache__/wizard.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/css/xadmin.plugin.aggregation.css: -------------------------------------------------------------------------------- 1 | td.aggregate { 2 | font-weight: bold; 3 | } 4 | td.aggregate span.aggregate_title { 5 | float: right; 6 | } -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/css/xadmin.plugin.importexport.css: -------------------------------------------------------------------------------- 1 | /* FORM ROWS */ 2 | 3 | .form-row { 4 | overflow: hidden; 5 | padding: 10px; 6 | font-size: 13px; 7 | border-bottom: 1px solid #eee; 8 | } 9 | 10 | .form-row img, .form-row input { 11 | vertical-align: middle; 12 | } 13 | 14 | .form-row label input[type="checkbox"] { 15 | margin-top: 0; 16 | vertical-align: 0; 17 | } 18 | 19 | form .form-row p { 20 | padding-left: 0; 21 | } 22 | -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/css/xadmin.plugin.quickfilter.css: -------------------------------------------------------------------------------- 1 | .nav-quickfilter .filter-item { 2 | white-space: nowrap; 3 | overflow: hidden; 4 | padding: 5px; 5 | } 6 | 7 | .nav-quickfilter .filter-col-1 { 8 | margin: 3px 2px 0 -2px; 9 | float: left; 10 | } 11 | 12 | .nav-quickfilter .filter-col-2 { 13 | } 14 | 15 | .nav-quickfilter .nav-expand { 16 | z-index:100; 17 | } -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/css/xadmin.plugins.css: -------------------------------------------------------------------------------- 1 | /** Action **/ 2 | .action-checkbox-column { 3 | width: 14px; 4 | } 5 | 6 | /** quick-form **/ 7 | .quick-form .modal-body { 8 | padding-bottom: 0px; 9 | } 10 | .quick-form .modal-footer { 11 | margin-top: 0px; 12 | } -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/js/xadmin.plugin.batch.js: -------------------------------------------------------------------------------- 1 | 2 | ;(function($){ 3 | 4 | $('.batch-field-checkbox').bind('click', function(event){ 5 | if (!event) { var event = window.event; } 6 | var target = event.target ? event.target : event.srcElement; 7 | 8 | var wrap = $(this).parent().parent().find('.control-wrap'); 9 | if(target.checked){ 10 | wrap.show('fast'); 11 | } else { 12 | wrap.hide('fast'); 13 | } 14 | }); 15 | 16 | })(jQuery) 17 | -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/js/xadmin.widget.multiselect.js: -------------------------------------------------------------------------------- 1 | 2 | ;(function($){ 3 | 4 | $.fn.exform.renders.push(function(f){ 5 | if($.fn.multiselect){ 6 | f.find('.selectmultiple.selectdropdown').multiselect({ 7 | 8 | }); 9 | } 10 | }); 11 | 12 | })(jQuery) -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/vendor/bootstrap-image-gallery/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/static/xadmin/vendor/bootstrap-image-gallery/img/loading.gif -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/vendor/bootstrap-modal/img/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/static/xadmin/vendor/bootstrap-modal/img/ajax-loader.gif -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/vendor/bootstrap-multiselect/css/bootstrap-multiselect.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/static/xadmin/vendor/bootstrap-multiselect/css/bootstrap-multiselect.css -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/vendor/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/static/xadmin/vendor/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/vendor/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/static/xadmin/vendor/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/vendor/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/static/xadmin/vendor/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/vendor/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/static/xadmin/vendor/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/vendor/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/static/xadmin/vendor/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/vendor/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/static/xadmin/vendor/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/vendor/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/static/xadmin/vendor/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/vendor/select2/select2-spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/static/xadmin/vendor/select2/select2-spinner.gif -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/vendor/select2/select2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/static/xadmin/vendor/select2/select2.png -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/vendor/select2/select2x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/static/xadmin/vendor/select2/select2x2.png -------------------------------------------------------------------------------- /extra_apps/xadmin/templates/xadmin/404.html: -------------------------------------------------------------------------------- 1 | {% extends base_template %} 2 | {% load i18n %} 3 | 4 | {% block title %}{% trans 'Page not found' %}{% endblock %} 5 | 6 | {% block content %} 7 | 8 |

{% trans 'Page not found' %}

9 | 10 |

{% trans "We're sorry, but the requested page could not be found." %}

11 | 12 | {% endblock %} 13 | -------------------------------------------------------------------------------- /extra_apps/xadmin/templates/xadmin/blocks/modal_list.left_navbar.quickfilter.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_apps/xadmin/templates/xadmin/blocks/model_list.results_top.date_hierarchy.html: -------------------------------------------------------------------------------- 1 | {% if show %} 2 |
3 |
9 |
10 | {% endif %} 11 | -------------------------------------------------------------------------------- /extra_apps/xadmin/templates/xadmin/blocks/model_list.top_toolbar.importexport.import.html: -------------------------------------------------------------------------------- 1 | {% load i18n %} 2 | -------------------------------------------------------------------------------- /extra_apps/xadmin/templates/xadmin/blocks/model_list.top_toolbar.saveorder.html: -------------------------------------------------------------------------------- 1 | {% load i18n %} 2 | 7 | -------------------------------------------------------------------------------- /extra_apps/xadmin/templates/xadmin/edit_inline/blank.html: -------------------------------------------------------------------------------- 1 | {% extends "xadmin/edit_inline/base.html" %} 2 | {% load i18n xadmin_tags crispy_forms_tags %} 3 | 4 | {% block box_content_class %}formset-content{% endblock box_content_class %} 5 | {% block box_content %}

{% trans "Null" %}

{% endblock box_content %} -------------------------------------------------------------------------------- /extra_apps/xadmin/templates/xadmin/edit_inline/one.html: -------------------------------------------------------------------------------- 1 | {% extends "xadmin/edit_inline/base.html" %} 2 | {% load i18n xadmin_tags crispy_forms_tags %} 3 | 4 | {% block box_title %}{{ formset.opts.verbose_name_plural|title }}{% endblock box_title %} 5 | {% block box_content %} 6 | {{ formset.formset.management_form }} 7 | {{ formset.formset.non_form_errors }} 8 | {% crispy formset.formset.0 formset.formset.helper %} 9 | {% endblock box_content %} -------------------------------------------------------------------------------- /extra_apps/xadmin/templates/xadmin/filters/list.html: -------------------------------------------------------------------------------- 1 | {% load i18n %} 2 | -------------------------------------------------------------------------------- /extra_apps/xadmin/templates/xadmin/filters/rel.html: -------------------------------------------------------------------------------- 1 | {% load i18n %} 2 | -------------------------------------------------------------------------------- /extra_apps/xadmin/templates/xadmin/includes/toggle_back.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_apps/xadmin/templates/xadmin/includes/toggle_menu.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_apps/xadmin/templates/xadmin/layout/field_value.html: -------------------------------------------------------------------------------- 1 |
2 |
{{ result.label|safe }}
3 |
4 |

{{ result.val }}

5 |
6 |
7 | -------------------------------------------------------------------------------- /extra_apps/xadmin/templates/xadmin/layout/field_value_td.html: -------------------------------------------------------------------------------- 1 | 2 | {{ result.val }} 3 | 4 | -------------------------------------------------------------------------------- /extra_apps/xadmin/templates/xadmin/views/quick_detail.html: -------------------------------------------------------------------------------- 1 | {% load i18n %} 2 | {% load xadmin_tags %} 3 | {% load crispy_forms_tags %} 4 | {% crispy form %} -------------------------------------------------------------------------------- /extra_apps/xadmin/templates/xadmin/views/quick_form.html: -------------------------------------------------------------------------------- 1 | {% load i18n %} 2 | {% load xadmin_tags %} 3 | {% load crispy_forms_tags %} 4 |
{% csrf_token %} 5 | {% crispy form %} 6 |
7 | {{ media.css }} 8 | {{ media.js }} -------------------------------------------------------------------------------- /extra_apps/xadmin/templatetags/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/templatetags/__init__.py -------------------------------------------------------------------------------- /extra_apps/xadmin/templatetags/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/templatetags/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/xadmin/templatetags/__pycache__/xadmin_tags.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/templatetags/__pycache__/xadmin_tags.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/xadmin/views/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/views/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/xadmin/views/__pycache__/base.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/views/__pycache__/base.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/xadmin/views/__pycache__/dashboard.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/views/__pycache__/dashboard.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/xadmin/views/__pycache__/delete.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/views/__pycache__/delete.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/xadmin/views/__pycache__/detail.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/views/__pycache__/detail.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/xadmin/views/__pycache__/edit.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/views/__pycache__/edit.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/xadmin/views/__pycache__/form.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/views/__pycache__/form.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/xadmin/views/__pycache__/list.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/views/__pycache__/list.cpython-36.pyc -------------------------------------------------------------------------------- /extra_apps/xadmin/views/__pycache__/website.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/extra_apps/xadmin/views/__pycache__/website.cpython-36.pyc -------------------------------------------------------------------------------- /media/15_P_1448947257324.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/15_P_1448947257324.jpg -------------------------------------------------------------------------------- /media/15_P_1448947257324_2GYL8bG.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/15_P_1448947257324_2GYL8bG.jpg -------------------------------------------------------------------------------- /media/2_20170719161405_249.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/2_20170719161405_249.jpg -------------------------------------------------------------------------------- /media/2_20170719161405_249_VXtw0x7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/2_20170719161405_249_VXtw0x7.jpg -------------------------------------------------------------------------------- /media/2_20170719161405_249_jIDZ8BP.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/2_20170719161405_249_jIDZ8BP.jpg -------------------------------------------------------------------------------- /media/2_20170719161405_249_vK49DiO.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/2_20170719161405_249_vK49DiO.jpg -------------------------------------------------------------------------------- /media/2_20170719161435_381.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/2_20170719161435_381.jpg -------------------------------------------------------------------------------- /media/2_P_1448945810202.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/2_P_1448945810202.jpg -------------------------------------------------------------------------------- /media/2_P_1448945810202_lGp49nw.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/2_P_1448945810202_lGp49nw.jpg -------------------------------------------------------------------------------- /media/2_P_1448945810202_lGp49nw_1sYwcKQ.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/2_P_1448945810202_lGp49nw_1sYwcKQ.jpg -------------------------------------------------------------------------------- /media/2_P_1448945810202_lGp49nw_QMVQzoQ.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/2_P_1448945810202_lGp49nw_QMVQzoQ.jpg -------------------------------------------------------------------------------- /media/2_P_1448945810202_tFI76bj.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/2_P_1448945810202_tFI76bj.jpg -------------------------------------------------------------------------------- /media/9_P_1448944791617.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/9_P_1448944791617.jpg -------------------------------------------------------------------------------- /media/9_P_1448944791617_NEerWKF.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/9_P_1448944791617_NEerWKF.jpg -------------------------------------------------------------------------------- /media/banner/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/banner/1.jpg -------------------------------------------------------------------------------- /media/banner/9_P_1448944791617.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/banner/9_P_1448944791617.jpg -------------------------------------------------------------------------------- /media/banner/banner1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/banner/banner1.jpg -------------------------------------------------------------------------------- /media/banner/banner1_55xPGUL.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/banner/banner1_55xPGUL.jpg -------------------------------------------------------------------------------- /media/banner/banner2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/banner/banner2.jpg -------------------------------------------------------------------------------- /media/banner/banner2_eMr2qt0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/banner/banner2_eMr2qt0.jpg -------------------------------------------------------------------------------- /media/banner/banner3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/banner/banner3.jpg -------------------------------------------------------------------------------- /media/banner/banner3_0TEbBYq.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/banner/banner3_0TEbBYq.jpg -------------------------------------------------------------------------------- /media/brands/lyfs-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/brands/lyfs-1.jpg -------------------------------------------------------------------------------- /media/brands/lyfs-1_UxGmYAM.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/brands/lyfs-1_UxGmYAM.jpg -------------------------------------------------------------------------------- /media/brands/lyfs-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/brands/lyfs-2.jpg -------------------------------------------------------------------------------- /media/brands/scsg-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/brands/scsg-2.jpg -------------------------------------------------------------------------------- /media/brands/scsg-2_G6LV34f.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/brands/scsg-2_G6LV34f.jpg -------------------------------------------------------------------------------- /media/brands/scsg-2_G6LV34f_RBrrmL1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/brands/scsg-2_G6LV34f_RBrrmL1.jpg -------------------------------------------------------------------------------- /media/brands/scsg-2_s2g3L7M.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/brands/scsg-2_s2g3L7M.jpg -------------------------------------------------------------------------------- /media/brands/scsg-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/brands/scsg-3.jpg -------------------------------------------------------------------------------- /media/brands/sxsp-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/brands/sxsp-1.jpg -------------------------------------------------------------------------------- /media/brands/sxsp-1_HPZZvbI.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/brands/sxsp-1_HPZZvbI.jpg -------------------------------------------------------------------------------- /media/brands/sxsp-1_HPZZvbI_9CC6gjo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/brands/sxsp-1_HPZZvbI_9CC6gjo.jpg -------------------------------------------------------------------------------- /media/brands/sxsp-1_KDntI6h.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/brands/sxsp-1_KDntI6h.jpg -------------------------------------------------------------------------------- /media/brands/sxsp-1_cqNZz40.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/brands/sxsp-1_cqNZz40.jpg -------------------------------------------------------------------------------- /media/brands/sxsp-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/brands/sxsp-2.jpg -------------------------------------------------------------------------------- /media/brands/sxsp-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/brands/sxsp-3.jpg -------------------------------------------------------------------------------- /media/brands/sxsp-3_jG6lwp4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/brands/sxsp-3_jG6lwp4.jpg -------------------------------------------------------------------------------- /media/brands/sxsp-3_jG6lwp4_Juwdfys.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/brands/sxsp-3_jG6lwp4_Juwdfys.jpg -------------------------------------------------------------------------------- /media/brands/sxsp-3_p6QnMEd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/brands/sxsp-3_p6QnMEd.jpg -------------------------------------------------------------------------------- /media/brands/sxsp-3_p6QnMEd_rNwnYWd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/brands/sxsp-3_p6QnMEd_rNwnYWd.jpg -------------------------------------------------------------------------------- /media/goods/images/10_P_1448944572085.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/goods/images/10_P_1448944572085.jpg -------------------------------------------------------------------------------- /media/goods/images/11_P_1448944388277.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/goods/images/11_P_1448944388277.jpg -------------------------------------------------------------------------------- /media/goods/images/12_P_1448947547989.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/goods/images/12_P_1448947547989.jpg -------------------------------------------------------------------------------- /media/goods/images/13_P_1448947460386.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/goods/images/13_P_1448947460386.jpg -------------------------------------------------------------------------------- /media/goods/images/14_P_1448947354031.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/goods/images/14_P_1448947354031.jpg -------------------------------------------------------------------------------- /media/goods/images/15_P_1448947257324.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/goods/images/15_P_1448947257324.jpg -------------------------------------------------------------------------------- /media/goods/images/16_P_1448947194687.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/goods/images/16_P_1448947194687.jpg -------------------------------------------------------------------------------- /media/goods/images/17_P_1448947102246.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/goods/images/17_P_1448947102246.jpg -------------------------------------------------------------------------------- /media/goods/images/18_P_1448947011435.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/goods/images/18_P_1448947011435.jpg -------------------------------------------------------------------------------- /media/goods/images/19_P_1448946951581.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/goods/images/19_P_1448946951581.jpg -------------------------------------------------------------------------------- /media/goods/images/1_P_1449024889889.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/goods/images/1_P_1449024889889.jpg -------------------------------------------------------------------------------- /media/goods/images/20_P_1448946850602.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/goods/images/20_P_1448946850602.jpg -------------------------------------------------------------------------------- /media/goods/images/21_P_1448946793276.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/goods/images/21_P_1448946793276.jpg -------------------------------------------------------------------------------- /media/goods/images/22_P_1448946729629.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/goods/images/22_P_1448946729629.jpg -------------------------------------------------------------------------------- /media/goods/images/23_P_1448948070348.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/goods/images/23_P_1448948070348.jpg -------------------------------------------------------------------------------- /media/goods/images/24_P_1448948023823.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/goods/images/24_P_1448948023823.jpg -------------------------------------------------------------------------------- /media/goods/images/25_P_1448947875346.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/goods/images/25_P_1448947875346.jpg -------------------------------------------------------------------------------- /media/goods/images/26_P_1448947825754.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/goods/images/26_P_1448947825754.jpg -------------------------------------------------------------------------------- /media/goods/images/27_P_1448947771805.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/goods/images/27_P_1448947771805.jpg -------------------------------------------------------------------------------- /media/goods/images/28_P_1448947699948.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/goods/images/28_P_1448947699948.jpg -------------------------------------------------------------------------------- /media/goods/images/29_P_1448947631994.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/goods/images/29_P_1448947631994.jpg -------------------------------------------------------------------------------- /media/goods/images/2_20170719161405_249.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/goods/images/2_20170719161405_249.jpg -------------------------------------------------------------------------------- /media/goods/images/2_20170719161414_628.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/goods/images/2_20170719161414_628.jpg -------------------------------------------------------------------------------- /media/goods/images/2_20170719161435_381.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/goods/images/2_20170719161435_381.jpg -------------------------------------------------------------------------------- /media/goods/images/2_P_1448945810202.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/goods/images/2_P_1448945810202.jpg -------------------------------------------------------------------------------- /media/goods/images/30_P_1448948663450.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/goods/images/30_P_1448948663450.jpg -------------------------------------------------------------------------------- /media/goods/images/31_P_1448948598947.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/goods/images/31_P_1448948598947.jpg -------------------------------------------------------------------------------- /media/goods/images/32_P_1448948525620.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/goods/images/32_P_1448948525620.jpg -------------------------------------------------------------------------------- /media/goods/images/33_P_1448948479966.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/goods/images/33_P_1448948479966.jpg -------------------------------------------------------------------------------- /media/goods/images/34_P_1448948399009.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/goods/images/34_P_1448948399009.jpg -------------------------------------------------------------------------------- /media/goods/images/35_P_1448948333610.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/goods/images/35_P_1448948333610.jpg -------------------------------------------------------------------------------- /media/goods/images/36_P_1448948234405.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/goods/images/36_P_1448948234405.jpg -------------------------------------------------------------------------------- /media/goods/images/37_P_1448949284365.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/goods/images/37_P_1448949284365.jpg -------------------------------------------------------------------------------- /media/goods/images/38_P_1448949220255.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/goods/images/38_P_1448949220255.jpg -------------------------------------------------------------------------------- /media/goods/images/39_P_1448949115481.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/goods/images/39_P_1448949115481.jpg -------------------------------------------------------------------------------- /media/goods/images/3_P_1448945490837.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/goods/images/3_P_1448945490837.jpg -------------------------------------------------------------------------------- /media/goods/images/40_P_1448949038702.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/goods/images/40_P_1448949038702.jpg -------------------------------------------------------------------------------- /media/goods/images/41_P_1448948980358.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/goods/images/41_P_1448948980358.jpg -------------------------------------------------------------------------------- /media/goods/images/42_P_1448948895193.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/goods/images/42_P_1448948895193.jpg -------------------------------------------------------------------------------- /media/goods/images/43_P_1448948762645.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/goods/images/43_P_1448948762645.jpg -------------------------------------------------------------------------------- /media/goods/images/44_P_1448948850187.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/goods/images/44_P_1448948850187.jpg -------------------------------------------------------------------------------- /media/goods/images/45_P_1448946661303.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/goods/images/45_P_1448946661303.jpg -------------------------------------------------------------------------------- /media/goods/images/46_P_1448946598711.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/goods/images/46_P_1448946598711.jpg -------------------------------------------------------------------------------- /media/goods/images/47_P_1448946213263.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/goods/images/47_P_1448946213263.jpg -------------------------------------------------------------------------------- /media/goods/images/48_P_1448943988970.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/goods/images/48_P_1448943988970.jpg -------------------------------------------------------------------------------- /media/goods/images/49_P_1448162819889.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/goods/images/49_P_1448162819889.jpg -------------------------------------------------------------------------------- /media/goods/images/4_P_1448945381985.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/goods/images/4_P_1448945381985.jpg -------------------------------------------------------------------------------- /media/goods/images/50_P_1448946543091.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/goods/images/50_P_1448946543091.jpg -------------------------------------------------------------------------------- /media/goods/images/51_P_1448946466595.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/goods/images/51_P_1448946466595.jpg -------------------------------------------------------------------------------- /media/goods/images/53_P_1495068879687.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/goods/images/53_P_1495068879687.jpg -------------------------------------------------------------------------------- /media/goods/images/5_P_1448945270390.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/goods/images/5_P_1448945270390.jpg -------------------------------------------------------------------------------- /media/goods/images/6_P_1448945167279.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/goods/images/6_P_1448945167279.jpg -------------------------------------------------------------------------------- /media/goods/images/7_P_1448945104883.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/goods/images/7_P_1448945104883.jpg -------------------------------------------------------------------------------- /media/goods/images/8_P_1448945032810.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/goods/images/8_P_1448945032810.jpg -------------------------------------------------------------------------------- /media/goods/images/9_P_1448944791617.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/goods/images/9_P_1448944791617.jpg -------------------------------------------------------------------------------- /media/goods/images/生鲜_20170719161424_153.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/goods/images/生鲜_20170719161424_153.jpg -------------------------------------------------------------------------------- /media/message/images/3_P_1448945490837.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/message/images/3_P_1448945490837.jpg -------------------------------------------------------------------------------- /media/message/images/胡歌.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/message/images/胡歌.jpg -------------------------------------------------------------------------------- /media/message/images/胡歌_jTtLOIp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/message/images/胡歌_jTtLOIp.jpg -------------------------------------------------------------------------------- /media/message/images/胡歌_oFeyttN.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/media/message/images/胡歌_oFeyttN.jpg -------------------------------------------------------------------------------- /static/fonts/iconfont.60cf513.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/static/fonts/iconfont.60cf513.ttf -------------------------------------------------------------------------------- /static/fonts/iconfont.fcaaa27.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/static/fonts/iconfont.fcaaa27.eot -------------------------------------------------------------------------------- /static/images/loginBg1.23c7104.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derek-zhang123/MxShop/22001da19b3d85424f48d78a844b8f424ae1e0e6/static/images/loginBg1.23c7104.jpg -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 首页 6 | 7 | 8 |
9 | 10 | 11 | 12 | --------------------------------------------------------------------------------