├── .gitignore ├── LICENSE ├── MxOnline ├── .idea │ ├── MxOnline.iml │ ├── dataSources.local.xml │ ├── dataSources.xml │ ├── dataSources │ │ └── e3d329ec-8db2-4baf-b55e-573b201f0cea.xml │ ├── deployment.xml │ ├── misc.xml │ ├── modules.xml │ └── workspace.xml ├── MxOnline │ ├── __init__.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── apps │ ├── __init__.py │ ├── courses │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── adminx.py │ │ ├── apps.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_course_course_org.py │ │ │ ├── 0003_course_category.py │ │ │ ├── 0004_course_tag.py │ │ │ ├── 0005_video_url.py │ │ │ ├── 0006_auto_20170914_2345.py │ │ │ ├── 0007_course_teacher.py │ │ │ ├── 0008_auto_20170914_2356.py │ │ │ ├── 0009_course_is_banner.py │ │ │ ├── 0010_auto_20170918_2253.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── operation │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── adminx.py │ │ ├── apps.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_auto_20170914_2252.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── tests.py │ │ └── views.py │ ├── organization │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── adminx.py │ │ ├── apps.py │ │ ├── forms.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_auto_20170911_2124.py │ │ │ ├── 0003_auto_20170911_2324.py │ │ │ ├── 0004_teacher_image.py │ │ │ ├── 0005_teacher_age.py │ │ │ ├── 0006_courseorg_tag.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── users │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── adminx.py │ │ ├── apps.py │ │ ├── forms.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_auto_20170909_1749.py │ │ │ ├── 0003_auto_20170910_1910.py │ │ │ ├── 0004_auto_20170917_1359.py │ │ │ ├── 0005_auto_20170917_1402.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ └── utils │ │ ├── __init__.py │ │ ├── email_send.py │ │ └── mixin_utils.py ├── courses │ └── 2017 │ │ └── 09 │ │ └── timg.jpg ├── extra_apps │ ├── __init__.py │ └── xadmin │ │ ├── .tx │ │ └── config │ │ ├── __init__.py │ │ ├── adminx.py │ │ ├── apps.py │ │ ├── filters.py │ │ ├── forms.py │ │ ├── layout.py │ │ ├── locale │ │ ├── de_DE │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.po │ │ │ │ └── djangojs.po │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.po │ │ │ │ └── djangojs.po │ │ ├── es_MX │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.po │ │ │ │ └── djangojs.po │ │ ├── eu │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.po │ │ │ │ └── djangojs.po │ │ ├── id_ID │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.po │ │ │ │ └── djangojs.po │ │ ├── ja │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.po │ │ │ │ └── djangojs.po │ │ ├── lt │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.po │ │ │ │ └── djangojs.po │ │ ├── nl_NL │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.po │ │ │ │ └── djangojs.po │ │ ├── pl │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.po │ │ │ │ └── djangojs.po │ │ ├── pt_BR │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.po │ │ │ │ └── djangojs.po │ │ ├── ru_RU │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.po │ │ │ │ └── djangojs.po │ │ └── zh_Hans │ │ │ └── LC_MESSAGES │ │ │ ├── django.po │ │ │ └── djangojs.po │ │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_log.py │ │ ├── 0003_auto_20160715_0100.py │ │ └── __init__.py │ │ ├── models.py │ │ ├── plugins │ │ ├── __init__.py │ │ ├── actions.py │ │ ├── aggregation.py │ │ ├── ajax.py │ │ ├── auth.py │ │ ├── batch.py │ │ ├── bookmark.py │ │ ├── chart.py │ │ ├── comments.py │ │ ├── details.py │ │ ├── editable.py │ │ ├── excel.py │ │ ├── export.py │ │ ├── filters.py │ │ ├── images.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.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.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 │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ ├── 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.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 │ │ │ ├── excel │ │ │ └── model_list.top_toolbar.import.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 │ │ │ ├── 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 │ │ └── xadmin_tags.py │ │ ├── util.py │ │ ├── vendors.py │ │ ├── views │ │ ├── __init__.py │ │ ├── base.py │ │ ├── dashboard.py │ │ ├── delete.py │ │ ├── detail.py │ │ ├── edit.py │ │ ├── form.py │ │ ├── list.py │ │ └── website.py │ │ └── widgets.py ├── manage.py ├── media │ ├── banner │ │ └── 17 │ │ │ └── 09 │ │ │ ├── 壁纸_1.jpg │ │ │ ├── 壁纸_17.jpg │ │ │ └── 壁纸_9.jpg │ ├── course │ │ └── resource │ │ │ └── 2017 │ │ │ └── 09 │ │ │ ├── 02第二讲工厂方法模式.ppt │ │ │ └── jiaoben1721.zip │ ├── courses │ │ ├── 2017 │ │ │ └── 09 │ │ │ │ ├── timg.jpg │ │ │ │ ├── u21010118893632423158fm27gp0.jpg │ │ │ │ ├── u30418513143420192649fm27gp0.jpg │ │ │ │ ├── u3390377343772875504fm27gp0.jpg │ │ │ │ ├── u6156149241025835662fm27gp0.jpg │ │ │ │ ├── 下载.jpg │ │ │ │ ├── 下载_1.jpg │ │ │ │ └── 下载_2.jpg │ │ └── ueditor │ │ │ ├── QQ图片20170801222015_20170918225705_862.jpg │ │ │ ├── u=2101011889,3632423158&fm=27&gp=0_20170918230558_545.jpg │ │ │ ├── u=2101011889,3632423158&fm=27&gp=0_20170918230608_723.jpg │ │ │ └── u=3041851314,3420192649&fm=27&gp=0_20170918225730_293.jpg │ ├── image │ │ └── 2017 │ │ │ └── 09 │ │ │ ├── QQ图片20170801222015.jpg │ │ │ ├── QQ图片20170801222015_37Rd85T.jpg │ │ │ └── QQ图片20170801222015_WaEXno9.jpg │ ├── org │ │ └── 2017 │ │ │ └── 09 │ │ │ ├── 060828381f30e924d5540e044b086e061d95f717.jpg │ │ │ ├── 30adcbef76094b366e689d1aa3cc7cd98c109d4b.jpg │ │ │ ├── 58ee3d6d55fbb2fba9eb272c4d4a20a44723dcc8.jpg │ │ │ ├── 7e3e6709c93d70cfe25242c6f1dcd100bba12b55.jpg │ │ │ ├── 91ef76c6a7efce1bb9afa2cba551f3deb48f652e.jpg │ │ │ ├── 9f510fb30f2442a779438816d943ad4bd1130237.jpg │ │ │ ├── aec379310a55b319c46a7d6941a98226cffc171e.jpg │ │ │ ├── b21c8701a18b87d6c1feb174070828381f30fd19.jpg │ │ │ ├── d0c8a786c9177f3e62d8676b79cf3bc79e3d56e3.jpg │ │ │ ├── d52a2834349b033b092bcb2d14ce36d3d439bda1.jpg │ │ │ ├── d788d43f8794a4c2ea7bea2c0cf41bd5ad6e3958.jpg │ │ │ ├── e850352ac65c103896bc6769b2119313b17e895f.jpg │ │ │ └── u2211000332982146390fm58u_exp_01643966717648840980fm_exp_086bpow512bpoh512.jpg │ └── teacher │ │ └── 2017 │ │ └── 09 │ │ ├── QQ图片20170801222015.jpg │ │ └── f3a5359d53c733fa28c3951b8c2c0cc5.png ├── static │ ├── css │ │ ├── animate.css │ │ ├── aui.css │ │ ├── aui_iconfont.ttf │ │ ├── login.css │ │ ├── lq.datetimepick.css │ │ ├── mooc.css │ │ ├── muke │ │ │ ├── base.css │ │ │ ├── common-less.css │ │ │ └── course │ │ │ │ ├── common-less.css │ │ │ │ ├── course-comment.css │ │ │ │ └── learn-less.css │ │ ├── reset.css │ │ ├── style.css │ │ └── video-js.min.css │ ├── images │ │ ├── 01.jpg │ │ ├── 01_mid.jpg │ │ ├── 01_small.jpg │ │ ├── 02.jpg │ │ ├── 02_mid.jpg │ │ ├── 02_small.jpg │ │ ├── 57a801860001c34b12000460.jpg │ │ ├── 57aa86a0000145c512000460.jpg │ │ ├── about_nav_bg.jpg │ │ ├── aobama.png │ │ ├── arrow.png │ │ ├── arrow_g.png │ │ ├── authentication.png │ │ ├── bank1.jpg │ │ ├── bank2.jpg │ │ ├── bank3.jpg │ │ ├── bank4.jpg │ │ ├── bank5.jpg │ │ ├── banner.jpg │ │ ├── banner_icon1.png │ │ ├── banner_icon2.png │ │ ├── banner_icon3.png │ │ ├── banner_icon4.png │ │ ├── bgblack.png │ │ ├── billbg.png │ │ ├── billbox.png │ │ ├── billboxactive.png │ │ ├── billcheck.png │ │ ├── billcheckg.png │ │ ├── bjdx.jpg │ │ ├── btn1.png │ │ ├── btn2.png │ │ ├── btn3.png │ │ ├── btn4.png │ │ ├── check.png │ │ ├── check2.png │ │ ├── check3.png │ │ ├── check4.png │ │ ├── check_alt.png │ │ ├── checkbox.jpg │ │ ├── checked.jpg │ │ ├── code.jpg │ │ ├── companydes.jpg │ │ ├── companylogo.jpg │ │ ├── companyrank.png │ │ ├── compright.png │ │ ├── contract.jpg │ │ ├── course.jpg │ │ ├── delete.png │ │ ├── diary-edit.png │ │ ├── dig_close.png │ │ ├── down.png │ │ ├── drop_plus.png │ │ ├── drop_plus_g.png │ │ ├── error-img.png │ │ ├── feature1.png │ │ ├── feature2.png │ │ ├── feature3.png │ │ ├── feature4.png │ │ ├── feature5.png │ │ ├── feature6.png │ │ ├── filebg │ │ │ ├── avi.png │ │ │ ├── cdr.png │ │ │ ├── csv.png │ │ │ ├── doc.png │ │ │ ├── jpg.png │ │ │ ├── mp3.png │ │ │ ├── pdf.png │ │ │ ├── png.png │ │ │ ├── ppt.png │ │ │ ├── rar.png │ │ │ ├── txt.png │ │ │ ├── xls.png │ │ │ ├── zip.png │ │ │ └── 复件 txt.png │ │ ├── fold.png │ │ ├── footlogo.png │ │ ├── fqy.png │ │ ├── g_star.png │ │ ├── gj.png │ │ ├── goback.png │ │ ├── gold.png │ │ ├── group.jpg │ │ ├── group_recommend.jpg │ │ ├── gx.png │ │ ├── h_star.png │ │ ├── header_middle.png │ │ ├── help_index_pic.gif │ │ ├── homepage.png │ │ ├── ht-top.png │ │ ├── icon-diary-jl.png │ │ ├── icon-diary-my.png │ │ ├── icon-diary-user.png │ │ ├── icon-release-active.png │ │ ├── icon-release-on.png │ │ ├── icon-release-over.png │ │ ├── icon.ico │ │ ├── laba.png │ │ ├── list_time.png │ │ ├── login-bg.png │ │ ├── logo.jpg │ │ ├── logo.png │ │ ├── logo2.png │ │ ├── mask.png │ │ ├── mayun.png │ │ ├── module1_1.jpg │ │ ├── module1_2.jpg │ │ ├── module3_1.jpg │ │ ├── module4_1.jpg │ │ ├── module4_2.jpg │ │ ├── module4_3.jpg │ │ ├── module4_4.jpg │ │ ├── module4_4_1.jpg │ │ ├── module4_6.jpg │ │ ├── module5_1.jpg │ │ ├── module5_2.jpg │ │ ├── module6_1.jpg │ │ ├── module6bg.png │ │ ├── my.jpg │ │ ├── mysql.jpg │ │ ├── nav_arrow.jpg │ │ ├── nav_hot.png │ │ ├── njdx.jpg │ │ ├── oyf.png │ │ ├── path2.png │ │ ├── path3.png │ │ ├── path4.png │ │ ├── path5.png │ │ ├── path6.png │ │ ├── pathbg.png │ │ ├── pathbg2.png │ │ ├── pay1.jpg │ │ ├── pay2.jpg │ │ ├── pay3.jpg │ │ ├── pay4.jpg │ │ ├── paypic1.png │ │ ├── paypic2.png │ │ ├── pen.png │ │ ├── pic1.png │ │ ├── pic10.png │ │ ├── pic11.png │ │ ├── pic12.png │ │ ├── pic13.png │ │ ├── pic1_1.png │ │ ├── pic2.png │ │ ├── pic3.png │ │ ├── pic4.png │ │ ├── pic403.png │ │ ├── pic404.png │ │ ├── pic5.png │ │ ├── pic503.png │ │ ├── pic6.png │ │ ├── pic7.png │ │ ├── pic8.png │ │ ├── pic9.png │ │ ├── pixel.gif │ │ ├── plus.jpg │ │ ├── pop-tips-info-arr.gif │ │ ├── python-zhengze.jpg │ │ ├── python.png │ │ ├── qhdx-logo.png │ │ ├── qhdx.jpg │ │ ├── r_star.png │ │ ├── rankgold.png │ │ ├── rankgreen.png │ │ ├── release1.png │ │ ├── release2.png │ │ ├── release3.png │ │ ├── release4.png │ │ ├── release5.png │ │ ├── release6.png │ │ ├── release7.png │ │ ├── release8.png │ │ ├── right.png │ │ ├── rightform1.png │ │ ├── rightform2.png │ │ ├── rightform3.png │ │ ├── rolling.gif │ │ ├── sass.jpg │ │ ├── scores.png │ │ ├── search_btn.png │ │ ├── select-arr-default.gif │ │ ├── select_arrow.png │ │ ├── select_arrow2.png │ │ ├── send.png │ │ ├── share_c1.png │ │ ├── share_c1_g.png │ │ ├── share_c2.png │ │ ├── share_c3.png │ │ ├── share_c4.png │ │ ├── share_c5.png │ │ ├── share_c6.png │ │ ├── share_c7.png │ │ ├── share_c8.png │ │ ├── share_c9.png │ │ ├── side1.png │ │ ├── side1_1.png │ │ ├── side2.png │ │ ├── side2_1.png │ │ ├── side3.png │ │ ├── side3_1.png │ │ ├── side4.png │ │ ├── side4_1.png │ │ ├── slide_l.png │ │ ├── slide_l_1.png │ │ ├── slide_r.png │ │ ├── slide_r_1.png │ │ ├── star-btn-hover.png │ │ ├── star-btn.png │ │ ├── star-hover.png │ │ ├── star.png │ │ ├── tab-jt.png │ │ ├── tab.png │ │ ├── tel.png │ │ ├── tell.png │ │ ├── time.png │ │ ├── top_down.png │ │ ├── unfold.png │ │ ├── up.png │ │ ├── upload.png │ │ ├── user.jpg │ │ ├── weixi_icon2.png │ │ ├── weixi_image.png │ │ ├── weixi_sm.png │ │ ├── word403.png │ │ ├── word503.png │ │ ├── x_alt.png │ │ └── zwj.png │ ├── img │ │ ├── background.gif │ │ ├── cancel-off-big.png │ │ ├── cancel-on-big.png │ │ ├── coffee.png │ │ ├── face-a-off.png │ │ ├── face-a.png │ │ ├── face-b-off.png │ │ ├── face-b.png │ │ ├── face-c-off.png │ │ ├── face-c.png │ │ ├── face-d-off.png │ │ ├── face-d.png │ │ ├── face-off.png │ │ ├── medal-off.png │ │ ├── medal-on.png │ │ ├── star-half-big.png │ │ ├── star-off-big.png │ │ └── star-on-big.png │ └── js │ │ ├── AdrInputPopDiv.js │ │ ├── area.js │ │ ├── autocomplete-init.js │ │ ├── bootstrap.min.js │ │ ├── comment.js │ │ ├── deco-comment.js │ │ ├── deco-common.js │ │ ├── deco-user.js │ │ ├── fastclick.min.js │ │ ├── fliplightbox.min.js │ │ ├── fold.js │ │ ├── index.js │ │ ├── jQuery.artTxtCount.js │ │ ├── jcarousel.connected-carousels.js │ │ ├── jquery-migrate-1.2.1.min.js │ │ ├── jquery-powerFloat-min.js │ │ ├── jquery-xmenu.js │ │ ├── jquery.autocomplete.min.js │ │ ├── jquery.cookie.js │ │ ├── jquery.formset.js │ │ ├── jquery.imagezoom.min.js │ │ ├── jquery.jcarousel.min.js │ │ ├── jquery.min.js │ │ ├── jquery.uploadify.min.js │ │ ├── login.js │ │ ├── lq.datetimepick.js │ │ ├── plugins │ │ ├── datePicker │ │ │ ├── mobiscroll.css │ │ │ └── mobiscroll.js │ │ ├── jquery.flexslider-min.js │ │ ├── jquery.raty.js │ │ ├── jquery.scrollLoading.js │ │ ├── jquery.timer.js │ │ ├── jquery.upload.js │ │ ├── laydate │ │ │ ├── laydate.js │ │ │ ├── need │ │ │ │ └── laydate.css │ │ │ └── skins │ │ │ │ └── default │ │ │ │ ├── icon.png │ │ │ │ └── laydate.css │ │ ├── layer │ │ │ ├── extend │ │ │ │ └── layer.ext.js │ │ │ ├── layer.js │ │ │ └── skin │ │ │ │ ├── default │ │ │ │ ├── icon-ext.png │ │ │ │ ├── icon.png │ │ │ │ ├── loading-0.gif │ │ │ │ ├── loading-1.gif │ │ │ │ └── loading-2.gif │ │ │ │ ├── layer.css │ │ │ │ └── layer.ext.css │ │ ├── queryCity │ │ │ ├── css │ │ │ │ └── cityLayout.css │ │ │ ├── images │ │ │ │ ├── Thumbs.db │ │ │ │ ├── bg_mc_0113_1.png │ │ │ │ ├── bg_mc_0113_2.png │ │ │ │ ├── bg_mc_0113_3.png │ │ │ │ ├── bg_mc_0113_4.png │ │ │ │ ├── bg_mc_0130_1.png │ │ │ │ ├── bg_mc_0130_2.png │ │ │ │ └── ts-indexcity.png │ │ │ └── js │ │ │ │ ├── public.js │ │ │ │ ├── public2.js │ │ │ │ ├── queryAllAreas.js │ │ │ │ ├── queryAllProvinces.js │ │ │ │ └── queryCities.js │ │ └── upload.js │ │ ├── select.js │ │ ├── selectUi.js │ │ ├── unslider.js │ │ ├── validate.js │ │ ├── validateDialog.js │ │ ├── video.min.js │ │ └── wechat.js └── templates │ ├── 403.html │ ├── 404.html │ ├── 500.html │ ├── active_fail.html │ ├── base.html │ ├── course-comment.html │ ├── course-detail.html │ ├── course-list.html │ ├── course-play.html │ ├── course-video.html │ ├── forgetpwd.html │ ├── index.html │ ├── login.html │ ├── org-detail-course.html │ ├── org-detail-desc.html │ ├── org-detail-homepage.html │ ├── org-detail-teachers.html │ ├── org-list.html │ ├── org_base.html │ ├── password_reset.html │ ├── register.html │ ├── send_success.html │ ├── teacher-detail.html │ ├── teachers-list.html │ ├── usercenter-fav-course.html │ ├── usercenter-fav-org.html │ ├── usercenter-fav-teacher.html │ ├── usercenter-info.html │ ├── usercenter-message.html │ ├── usercenter-mycourse.html │ └── usercenter_base.html └── MxShop ├── .idea ├── MxShop.iml ├── deployment.xml ├── dictionaries │ └── Qin.xml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── workspace.xml ├── MxShop ├── __init__.py ├── const.py ├── settings.py ├── urls.py └── wsgi.py ├── apps ├── __init__.py ├── goods │ ├── __init__.py │ ├── admin.py │ ├── adminx.py │ ├── apps.py │ ├── filter.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20171017_2017.py │ │ ├── 0003_auto_20171025_2133.py │ │ └── __init__.py │ ├── models.py │ ├── serializers.py │ ├── tests.py │ ├── views.py │ └── views_base.py ├── trade │ ├── __init__.py │ ├── admin.py │ ├── adminx.py │ ├── apps.py │ ├── keys │ │ ├── alipay_pub_key.txt │ │ ├── private_2048.txt │ │ └── pub_2048.txt │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20171009_2140.py │ │ ├── 0003_auto_20171022_1507.py │ │ ├── 0004_auto_20171023_2354.py │ │ └── __init__.py │ ├── models.py │ ├── serializers.py │ ├── tests.py │ └── views.py ├── user_operation │ ├── __init__.py │ ├── admin.py │ ├── adminx.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20171009_2140.py │ │ ├── 0003_auto_20171019_2144.py │ │ ├── 0004_auto_20171021_2118.py │ │ ├── 0005_auto_20171021_2258.py │ │ └── __init__.py │ ├── models.py │ ├── serializers.py │ ├── signals.py │ ├── tests.py │ └── views.py ├── users │ ├── __init__.py │ ├── admin.py │ ├── adminx.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20171019_2144.py │ │ └── __init__.py │ ├── models.py │ ├── serializers.py │ ├── signals.py │ ├── tests.py │ └── views.py └── utils │ ├── __init__.py │ ├── alipay.py │ ├── permissions.py │ ├── weibo_login.py │ └── yunpian.py ├── db.sqlite3 ├── db_tools ├── data │ ├── category_data.py │ └── product_data.py ├── import_category_data.py └── import_goods_data.py ├── extra_apps ├── DjangoUeditor │ ├── __init__.py │ ├── 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 ├── social_core │ ├── __init__.py │ ├── actions.py │ ├── backends │ │ ├── __init__.py │ │ ├── amazon.py │ │ ├── angel.py │ │ ├── aol.py │ │ ├── appsfuel.py │ │ ├── arcgis.py │ │ ├── asana.py │ │ ├── azuread.py │ │ ├── base.py │ │ ├── battlenet.py │ │ ├── beats.py │ │ ├── behance.py │ │ ├── belgiumeid.py │ │ ├── bitbucket.py │ │ ├── box.py │ │ ├── changetip.py │ │ ├── classlink.py │ │ ├── clef.py │ │ ├── coding.py │ │ ├── coinbase.py │ │ ├── coursera.py │ │ ├── dailymotion.py │ │ ├── deezer.py │ │ ├── digitalocean.py │ │ ├── disqus.py │ │ ├── docker.py │ │ ├── douban.py │ │ ├── dribbble.py │ │ ├── drip.py │ │ ├── dropbox.py │ │ ├── echosign.py │ │ ├── edmodo.py │ │ ├── email.py │ │ ├── eveonline.py │ │ ├── evernote.py │ │ ├── exacttarget.py │ │ ├── facebook.py │ │ ├── fedora.py │ │ ├── fitbit.py │ │ ├── five_hundred_px.py │ │ ├── flickr.py │ │ ├── foursquare.py │ │ ├── gae.py │ │ ├── github.py │ │ ├── github_enterprise.py │ │ ├── gitlab.py │ │ ├── goclio.py │ │ ├── goclioeu.py │ │ ├── google.py │ │ ├── google_openidconnect.py │ │ ├── instagram.py │ │ ├── itembase.py │ │ ├── jawbone.py │ │ ├── justgiving.py │ │ ├── kakao.py │ │ ├── khanacademy.py │ │ ├── lastfm.py │ │ ├── launchpad.py │ │ ├── legacy.py │ │ ├── line.py │ │ ├── linkedin.py │ │ ├── live.py │ │ ├── livejournal.py │ │ ├── loginradius.py │ │ ├── lyft.py │ │ ├── mailchimp.py │ │ ├── mailru.py │ │ ├── mapmyfitness.py │ │ ├── mediawiki.py │ │ ├── meetup.py │ │ ├── mendeley.py │ │ ├── mineid.py │ │ ├── mixcloud.py │ │ ├── monzo.py │ │ ├── moves.py │ │ ├── nationbuilder.py │ │ ├── naver.py │ │ ├── ngpvan.py │ │ ├── nk.py │ │ ├── oauth.py │ │ ├── odnoklassniki.py │ │ ├── open_id.py │ │ ├── open_id_connect.py │ │ ├── openstreetmap.py │ │ ├── orbi.py │ │ ├── orcid.py │ │ ├── patreon.py │ │ ├── persona.py │ │ ├── pinterest.py │ │ ├── pixelpin.py │ │ ├── pocket.py │ │ ├── podio.py │ │ ├── professionali.py │ │ ├── pushbullet.py │ │ ├── qiita.py │ │ ├── qq.py │ │ ├── quizlet.py │ │ ├── rdio.py │ │ ├── readability.py │ │ ├── reddit.py │ │ ├── runkeeper.py │ │ ├── salesforce.py │ │ ├── saml.py │ │ ├── shimmering.py │ │ ├── shopify.py │ │ ├── sketchfab.py │ │ ├── skyrock.py │ │ ├── slack.py │ │ ├── soundcloud.py │ │ ├── spotify.py │ │ ├── stackoverflow.py │ │ ├── steam.py │ │ ├── stocktwits.py │ │ ├── strava.py │ │ ├── stripe.py │ │ ├── suse.py │ │ ├── taobao.py │ │ ├── thisismyjam.py │ │ ├── trello.py │ │ ├── tripit.py │ │ ├── tumblr.py │ │ ├── twilio.py │ │ ├── twitch.py │ │ ├── twitter.py │ │ ├── uber.py │ │ ├── ubuntu.py │ │ ├── udata.py │ │ ├── untappd.py │ │ ├── upwork.py │ │ ├── username.py │ │ ├── utils.py │ │ ├── vend.py │ │ ├── vimeo.py │ │ ├── vk.py │ │ ├── weibo.py │ │ ├── weixin.py │ │ ├── withings.py │ │ ├── wunderlist.py │ │ ├── xing.py │ │ ├── yahoo.py │ │ ├── yammer.py │ │ ├── yandex.py │ │ └── zotero.py │ ├── exceptions.py │ ├── pipeline │ │ ├── __init__.py │ │ ├── debug.py │ │ ├── disconnect.py │ │ ├── mail.py │ │ ├── partial.py │ │ ├── social_auth.py │ │ ├── user.py │ │ └── utils.py │ ├── storage.py │ ├── store.py │ ├── strategy.py │ ├── tests │ │ ├── __init__.py │ │ ├── actions │ │ │ ├── __init__.py │ │ │ ├── actions.py │ │ │ ├── test_associate.py │ │ │ ├── test_disconnect.py │ │ │ └── test_login.py │ │ ├── backends │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── data │ │ │ │ └── saml_response.txt │ │ │ ├── legacy.py │ │ │ ├── oauth.py │ │ │ ├── open_id.py │ │ │ ├── open_id_connect.py │ │ │ ├── test_amazon.py │ │ │ ├── test_angel.py │ │ │ ├── test_arcgis.py │ │ │ ├── test_asana.py │ │ │ ├── test_azuread.py │ │ │ ├── test_behance.py │ │ │ ├── test_bitbucket.py │ │ │ ├── test_box.py │ │ │ ├── test_broken.py │ │ │ ├── test_clef.py │ │ │ ├── test_coinbase.py │ │ │ ├── test_coursera.py │ │ │ ├── test_dailymotion.py │ │ │ ├── test_deezer.py │ │ │ ├── test_digitalocean.py │ │ │ ├── test_disqus.py │ │ │ ├── test_dribbble.py │ │ │ ├── test_drip.py │ │ │ ├── test_dropbox.py │ │ │ ├── test_dummy.py │ │ │ ├── test_edmodo.py │ │ │ ├── test_email.py │ │ │ ├── test_evernote.py │ │ │ ├── test_facebook.py │ │ │ ├── test_fitbit.py │ │ │ ├── test_five_hundred_px.py │ │ │ ├── test_flickr.py │ │ │ ├── test_foursquare.py │ │ │ ├── test_github.py │ │ │ ├── test_github_enterprise.py │ │ │ ├── test_gitlab.py │ │ │ ├── test_google.py │ │ │ ├── test_instagram.py │ │ │ ├── test_itembase.py │ │ │ ├── test_kakao.py │ │ │ ├── test_khanacademy.py │ │ │ ├── test_linkedin.py │ │ │ ├── test_live.py │ │ │ ├── test_livejournal.py │ │ │ ├── test_lyft.py │ │ │ ├── test_mapmyfitness.py │ │ │ ├── test_mineid.py │ │ │ ├── test_mixcloud.py │ │ │ ├── test_nationbuilder.py │ │ │ ├── test_naver.py │ │ │ ├── test_ngpvan.py │ │ │ ├── test_orbi.py │ │ │ ├── test_patreon.py │ │ │ ├── test_pinterest.py │ │ │ ├── test_podio.py │ │ │ ├── test_qiita.py │ │ │ ├── test_quizlet.py │ │ │ ├── test_readability.py │ │ │ ├── test_reddit.py │ │ │ ├── test_saml.py │ │ │ ├── test_sketchfab.py │ │ │ ├── test_skyrock.py │ │ │ ├── test_slack.py │ │ │ ├── test_soundcloud.py │ │ │ ├── test_spotify.py │ │ │ ├── test_stackoverflow.py │ │ │ ├── test_steam.py │ │ │ ├── test_stocktwits.py │ │ │ ├── test_strava.py │ │ │ ├── test_stripe.py │ │ │ ├── test_taobao.py │ │ │ ├── test_thisismyjam.py │ │ │ ├── test_tripit.py │ │ │ ├── test_tumblr.py │ │ │ ├── test_twitch.py │ │ │ ├── test_twitter.py │ │ │ ├── test_uber.py │ │ │ ├── test_udata.py │ │ │ ├── test_upwork.py │ │ │ ├── test_username.py │ │ │ ├── test_utils.py │ │ │ ├── test_vk.py │ │ │ ├── test_wunderlist.py │ │ │ ├── test_xing.py │ │ │ ├── test_yahoo.py │ │ │ ├── test_yammer.py │ │ │ ├── test_yandex.py │ │ │ └── test_zotero.py │ │ ├── models.py │ │ ├── pipeline.py │ │ ├── requirements-base.txt │ │ ├── requirements-pypy.txt │ │ ├── requirements-python2.txt │ │ ├── requirements-python3.txt │ │ ├── requirements.txt │ │ ├── strategy.py │ │ ├── test_exceptions.py │ │ ├── test_pipeline.py │ │ ├── test_storage.py │ │ ├── test_utils.py │ │ └── testkey.pem │ └── utils.py └── xadmin │ ├── .tx │ └── config │ ├── __init__.py │ ├── adminx.py │ ├── apps.py │ ├── filters.py │ ├── forms.py │ ├── layout.py │ ├── locale │ ├── de_DE │ │ └── LC_MESSAGES │ │ │ ├── django.po │ │ │ └── djangojs.po │ ├── en │ │ └── LC_MESSAGES │ │ │ ├── django.po │ │ │ └── djangojs.po │ ├── es_MX │ │ └── LC_MESSAGES │ │ │ ├── django.po │ │ │ └── djangojs.po │ ├── eu │ │ └── LC_MESSAGES │ │ │ ├── django.po │ │ │ └── djangojs.po │ ├── id_ID │ │ └── LC_MESSAGES │ │ │ ├── django.po │ │ │ └── djangojs.po │ ├── ja │ │ └── LC_MESSAGES │ │ │ ├── django.po │ │ │ └── djangojs.po │ ├── lt │ │ └── LC_MESSAGES │ │ │ ├── django.po │ │ │ └── djangojs.po │ ├── nl_NL │ │ └── LC_MESSAGES │ │ │ ├── django.po │ │ │ └── djangojs.po │ ├── pl │ │ └── LC_MESSAGES │ │ │ ├── django.po │ │ │ └── djangojs.po │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ ├── django.po │ │ │ └── djangojs.po │ ├── ru_RU │ │ └── LC_MESSAGES │ │ │ ├── django.po │ │ │ └── djangojs.po │ └── zh_Hans │ │ └── LC_MESSAGES │ │ ├── django.po │ │ └── djangojs.po │ ├── migrations │ ├── 0001_initial.py │ ├── 0002_log.py │ ├── 0003_auto_20160715_0100.py │ └── __init__.py │ ├── models.py │ ├── plugins │ ├── __init__.py │ ├── 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 │ ├── 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.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.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.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 │ │ ├── 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 │ └── xadmin_tags.py │ ├── util.py │ ├── vendors.py │ ├── views │ ├── __init__.py │ ├── base.py │ ├── dashboard.py │ ├── delete.py │ ├── detail.py │ ├── edit.py │ ├── form.py │ ├── list.py │ └── website.py │ └── widgets.py ├── manage.py ├── media ├── banner │ └── images │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ └── 3.jpg ├── brand │ └── images │ │ ├── lyfs-1.jpg │ │ ├── lyfs-1_BgoxkQP.jpg │ │ ├── scsg-2_s2g3L7M.jpg │ │ ├── scsg-3.jpg │ │ ├── sxsp-2.jpg │ │ └── sxsp-2_Di4UEjS.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 └── user_operation │ └── files │ ├── QQ图片20170710190151.jpg │ └── QQ图片20170801222015.jpg ├── requirements.txt ├── static ├── fonts │ ├── iconfont.60cf513.ttf │ └── iconfont.fcaaa27.eot ├── images │ └── loginBg1.23c7104.jpg └── index.entry.js └── templates └── index.html /MxOnline/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /MxOnline/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /MxOnline/MxOnline/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/MxOnline/__init__.py -------------------------------------------------------------------------------- /MxOnline/apps/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/apps/__init__.py -------------------------------------------------------------------------------- /MxOnline/apps/courses/__init__.py: -------------------------------------------------------------------------------- 1 | default_app_config = "courses.apps.CoursesConfig" -------------------------------------------------------------------------------- /MxOnline/apps/courses/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /MxOnline/apps/courses/apps.py: -------------------------------------------------------------------------------- 1 | # _*_ coding: utf-8 _*_ 2 | 3 | from __future__ import unicode_literals 4 | 5 | from django.apps import AppConfig 6 | 7 | 8 | class CoursesConfig(AppConfig): 9 | name = 'courses' 10 | verbose_name = u"课程管理" 11 | -------------------------------------------------------------------------------- /MxOnline/apps/courses/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/apps/courses/migrations/__init__.py -------------------------------------------------------------------------------- /MxOnline/apps/courses/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /MxOnline/apps/operation/__init__.py: -------------------------------------------------------------------------------- 1 | default_app_config = "operation.apps.OperationConfig" -------------------------------------------------------------------------------- /MxOnline/apps/operation/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /MxOnline/apps/operation/apps.py: -------------------------------------------------------------------------------- 1 | # _*_ coding: utf-8 _*_ 2 | 3 | from __future__ import unicode_literals 4 | 5 | from django.apps import AppConfig 6 | 7 | 8 | class OperationConfig(AppConfig): 9 | name = 'operation' 10 | verbose_name = u"用户操作" 11 | -------------------------------------------------------------------------------- /MxOnline/apps/operation/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/apps/operation/migrations/__init__.py -------------------------------------------------------------------------------- /MxOnline/apps/operation/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /MxOnline/apps/operation/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /MxOnline/apps/organization/__init__.py: -------------------------------------------------------------------------------- 1 | default_app_config = "organization.apps.OrganizationConfig" -------------------------------------------------------------------------------- /MxOnline/apps/organization/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /MxOnline/apps/organization/apps.py: -------------------------------------------------------------------------------- 1 | # _*_ coding: utf-8 _*_ 2 | 3 | from __future__ import unicode_literals 4 | 5 | from django.apps import AppConfig 6 | 7 | 8 | class OrganizationConfig(AppConfig): 9 | name = 'organization' 10 | verbose_name = u"机构管理" 11 | -------------------------------------------------------------------------------- /MxOnline/apps/organization/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/apps/organization/migrations/__init__.py -------------------------------------------------------------------------------- /MxOnline/apps/organization/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /MxOnline/apps/users/__init__.py: -------------------------------------------------------------------------------- 1 | default_app_config = "users.apps.UsersConfig" -------------------------------------------------------------------------------- /MxOnline/apps/users/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | 5 | # from .models import UserProfile 6 | # 7 | # 8 | # class UserProfileAdmin(admin.ModelAdmin): 9 | # pass 10 | # 11 | # admin.site.register(UserProfile, UserProfileAdmin) 12 | -------------------------------------------------------------------------------- /MxOnline/apps/users/apps.py: -------------------------------------------------------------------------------- 1 | # _*_ coding: utf-8 _*_ 2 | 3 | from __future__ import unicode_literals 4 | 5 | from django.apps import AppConfig 6 | 7 | 8 | class UsersConfig(AppConfig): 9 | name = 'users' 10 | verbose_name = u"用户信息" 11 | -------------------------------------------------------------------------------- /MxOnline/apps/users/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/apps/users/migrations/__init__.py -------------------------------------------------------------------------------- /MxOnline/apps/users/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /MxOnline/apps/utils/__init__.py: -------------------------------------------------------------------------------- 1 | # _*_ coding: utf-8 _*_ 2 | __author__ = 'LennonChin' 3 | __date__ = '2017/09/10 下午 07:38' -------------------------------------------------------------------------------- /MxOnline/courses/2017/09/timg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/courses/2017/09/timg.jpg -------------------------------------------------------------------------------- /MxOnline/extra_apps/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/extra_apps/__init__.py -------------------------------------------------------------------------------- /MxOnline/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 -------------------------------------------------------------------------------- /MxOnline/extra_apps/xadmin/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/extra_apps/xadmin/migrations/__init__.py -------------------------------------------------------------------------------- /MxOnline/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 | } -------------------------------------------------------------------------------- /MxOnline/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 | } -------------------------------------------------------------------------------- /MxOnline/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 | } -------------------------------------------------------------------------------- /MxOnline/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) -------------------------------------------------------------------------------- /MxOnline/extra_apps/xadmin/static/xadmin/vendor/bootstrap-image-gallery/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/extra_apps/xadmin/static/xadmin/vendor/bootstrap-image-gallery/img/loading.gif -------------------------------------------------------------------------------- /MxOnline/extra_apps/xadmin/static/xadmin/vendor/bootstrap-modal/img/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/extra_apps/xadmin/static/xadmin/vendor/bootstrap-modal/img/ajax-loader.gif -------------------------------------------------------------------------------- /MxOnline/extra_apps/xadmin/static/xadmin/vendor/bootstrap-multiselect/css/bootstrap-multiselect.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/extra_apps/xadmin/static/xadmin/vendor/bootstrap-multiselect/css/bootstrap-multiselect.css -------------------------------------------------------------------------------- /MxOnline/extra_apps/xadmin/static/xadmin/vendor/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/extra_apps/xadmin/static/xadmin/vendor/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /MxOnline/extra_apps/xadmin/static/xadmin/vendor/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/extra_apps/xadmin/static/xadmin/vendor/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /MxOnline/extra_apps/xadmin/static/xadmin/vendor/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/extra_apps/xadmin/static/xadmin/vendor/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /MxOnline/extra_apps/xadmin/static/xadmin/vendor/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/extra_apps/xadmin/static/xadmin/vendor/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /MxOnline/extra_apps/xadmin/static/xadmin/vendor/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/extra_apps/xadmin/static/xadmin/vendor/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /MxOnline/extra_apps/xadmin/static/xadmin/vendor/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/extra_apps/xadmin/static/xadmin/vendor/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /MxOnline/extra_apps/xadmin/static/xadmin/vendor/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/extra_apps/xadmin/static/xadmin/vendor/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /MxOnline/extra_apps/xadmin/static/xadmin/vendor/font-awesome/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/extra_apps/xadmin/static/xadmin/vendor/font-awesome/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /MxOnline/extra_apps/xadmin/static/xadmin/vendor/select2/select2-spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/extra_apps/xadmin/static/xadmin/vendor/select2/select2-spinner.gif -------------------------------------------------------------------------------- /MxOnline/extra_apps/xadmin/static/xadmin/vendor/select2/select2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/extra_apps/xadmin/static/xadmin/vendor/select2/select2.png -------------------------------------------------------------------------------- /MxOnline/extra_apps/xadmin/static/xadmin/vendor/select2/select2x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/extra_apps/xadmin/static/xadmin/vendor/select2/select2x2.png -------------------------------------------------------------------------------- /MxOnline/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 | -------------------------------------------------------------------------------- /MxOnline/extra_apps/xadmin/templates/xadmin/blocks/modal_list.left_navbar.quickfilter.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MxOnline/extra_apps/xadmin/templates/xadmin/blocks/model_list.top_toolbar.saveorder.html: -------------------------------------------------------------------------------- 1 | {% load i18n %} 2 | 7 | -------------------------------------------------------------------------------- /MxOnline/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 %} -------------------------------------------------------------------------------- /MxOnline/extra_apps/xadmin/templates/xadmin/includes/toggle_back.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MxOnline/extra_apps/xadmin/templates/xadmin/includes/toggle_menu.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MxOnline/extra_apps/xadmin/templates/xadmin/layout/field_value_td.html: -------------------------------------------------------------------------------- 1 | 2 | {{ result.val }} 3 | 4 | -------------------------------------------------------------------------------- /MxOnline/extra_apps/xadmin/templates/xadmin/views/quick_detail.html: -------------------------------------------------------------------------------- 1 | {% load i18n %} 2 | {% load xadmin_tags %} 3 | {% load crispy_forms_tags %} 4 | {% crispy form %} -------------------------------------------------------------------------------- /MxOnline/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 }} -------------------------------------------------------------------------------- /MxOnline/extra_apps/xadmin/templatetags/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/extra_apps/xadmin/templatetags/__init__.py -------------------------------------------------------------------------------- /MxOnline/manage.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | import os 3 | import sys 4 | 5 | if __name__ == "__main__": 6 | os.environ.setdefault("DJANGO_SETTINGS_MODULE", "MxOnline.settings") 7 | 8 | from django.core.management import execute_from_command_line 9 | 10 | execute_from_command_line(sys.argv) 11 | -------------------------------------------------------------------------------- /MxOnline/media/banner/17/09/壁纸_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/media/banner/17/09/壁纸_1.jpg -------------------------------------------------------------------------------- /MxOnline/media/banner/17/09/壁纸_17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/media/banner/17/09/壁纸_17.jpg -------------------------------------------------------------------------------- /MxOnline/media/banner/17/09/壁纸_9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/media/banner/17/09/壁纸_9.jpg -------------------------------------------------------------------------------- /MxOnline/media/course/resource/2017/09/02第二讲工厂方法模式.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/media/course/resource/2017/09/02第二讲工厂方法模式.ppt -------------------------------------------------------------------------------- /MxOnline/media/course/resource/2017/09/jiaoben1721.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/media/course/resource/2017/09/jiaoben1721.zip -------------------------------------------------------------------------------- /MxOnline/media/courses/2017/09/timg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/media/courses/2017/09/timg.jpg -------------------------------------------------------------------------------- /MxOnline/media/courses/2017/09/u21010118893632423158fm27gp0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/media/courses/2017/09/u21010118893632423158fm27gp0.jpg -------------------------------------------------------------------------------- /MxOnline/media/courses/2017/09/u30418513143420192649fm27gp0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/media/courses/2017/09/u30418513143420192649fm27gp0.jpg -------------------------------------------------------------------------------- /MxOnline/media/courses/2017/09/u3390377343772875504fm27gp0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/media/courses/2017/09/u3390377343772875504fm27gp0.jpg -------------------------------------------------------------------------------- /MxOnline/media/courses/2017/09/u6156149241025835662fm27gp0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/media/courses/2017/09/u6156149241025835662fm27gp0.jpg -------------------------------------------------------------------------------- /MxOnline/media/courses/2017/09/下载.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/media/courses/2017/09/下载.jpg -------------------------------------------------------------------------------- /MxOnline/media/courses/2017/09/下载_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/media/courses/2017/09/下载_1.jpg -------------------------------------------------------------------------------- /MxOnline/media/courses/2017/09/下载_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/media/courses/2017/09/下载_2.jpg -------------------------------------------------------------------------------- /MxOnline/media/courses/ueditor/QQ图片20170801222015_20170918225705_862.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/media/courses/ueditor/QQ图片20170801222015_20170918225705_862.jpg -------------------------------------------------------------------------------- /MxOnline/media/courses/ueditor/u=2101011889,3632423158&fm=27&gp=0_20170918230558_545.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/media/courses/ueditor/u=2101011889,3632423158&fm=27&gp=0_20170918230558_545.jpg -------------------------------------------------------------------------------- /MxOnline/media/courses/ueditor/u=2101011889,3632423158&fm=27&gp=0_20170918230608_723.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/media/courses/ueditor/u=2101011889,3632423158&fm=27&gp=0_20170918230608_723.jpg -------------------------------------------------------------------------------- /MxOnline/media/courses/ueditor/u=3041851314,3420192649&fm=27&gp=0_20170918225730_293.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/media/courses/ueditor/u=3041851314,3420192649&fm=27&gp=0_20170918225730_293.jpg -------------------------------------------------------------------------------- /MxOnline/media/image/2017/09/QQ图片20170801222015.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/media/image/2017/09/QQ图片20170801222015.jpg -------------------------------------------------------------------------------- /MxOnline/media/image/2017/09/QQ图片20170801222015_37Rd85T.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/media/image/2017/09/QQ图片20170801222015_37Rd85T.jpg -------------------------------------------------------------------------------- /MxOnline/media/image/2017/09/QQ图片20170801222015_WaEXno9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/media/image/2017/09/QQ图片20170801222015_WaEXno9.jpg -------------------------------------------------------------------------------- /MxOnline/media/org/2017/09/060828381f30e924d5540e044b086e061d95f717.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/media/org/2017/09/060828381f30e924d5540e044b086e061d95f717.jpg -------------------------------------------------------------------------------- /MxOnline/media/org/2017/09/30adcbef76094b366e689d1aa3cc7cd98c109d4b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/media/org/2017/09/30adcbef76094b366e689d1aa3cc7cd98c109d4b.jpg -------------------------------------------------------------------------------- /MxOnline/media/org/2017/09/58ee3d6d55fbb2fba9eb272c4d4a20a44723dcc8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/media/org/2017/09/58ee3d6d55fbb2fba9eb272c4d4a20a44723dcc8.jpg -------------------------------------------------------------------------------- /MxOnline/media/org/2017/09/7e3e6709c93d70cfe25242c6f1dcd100bba12b55.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/media/org/2017/09/7e3e6709c93d70cfe25242c6f1dcd100bba12b55.jpg -------------------------------------------------------------------------------- /MxOnline/media/org/2017/09/91ef76c6a7efce1bb9afa2cba551f3deb48f652e.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/media/org/2017/09/91ef76c6a7efce1bb9afa2cba551f3deb48f652e.jpg -------------------------------------------------------------------------------- /MxOnline/media/org/2017/09/9f510fb30f2442a779438816d943ad4bd1130237.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/media/org/2017/09/9f510fb30f2442a779438816d943ad4bd1130237.jpg -------------------------------------------------------------------------------- /MxOnline/media/org/2017/09/aec379310a55b319c46a7d6941a98226cffc171e.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/media/org/2017/09/aec379310a55b319c46a7d6941a98226cffc171e.jpg -------------------------------------------------------------------------------- /MxOnline/media/org/2017/09/b21c8701a18b87d6c1feb174070828381f30fd19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/media/org/2017/09/b21c8701a18b87d6c1feb174070828381f30fd19.jpg -------------------------------------------------------------------------------- /MxOnline/media/org/2017/09/d0c8a786c9177f3e62d8676b79cf3bc79e3d56e3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/media/org/2017/09/d0c8a786c9177f3e62d8676b79cf3bc79e3d56e3.jpg -------------------------------------------------------------------------------- /MxOnline/media/org/2017/09/d52a2834349b033b092bcb2d14ce36d3d439bda1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/media/org/2017/09/d52a2834349b033b092bcb2d14ce36d3d439bda1.jpg -------------------------------------------------------------------------------- /MxOnline/media/org/2017/09/d788d43f8794a4c2ea7bea2c0cf41bd5ad6e3958.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/media/org/2017/09/d788d43f8794a4c2ea7bea2c0cf41bd5ad6e3958.jpg -------------------------------------------------------------------------------- /MxOnline/media/org/2017/09/e850352ac65c103896bc6769b2119313b17e895f.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/media/org/2017/09/e850352ac65c103896bc6769b2119313b17e895f.jpg -------------------------------------------------------------------------------- /MxOnline/media/org/2017/09/u2211000332982146390fm58u_exp_01643966717648840980fm_exp_086bpow512bpoh512.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/media/org/2017/09/u2211000332982146390fm58u_exp_01643966717648840980fm_exp_086bpow512bpoh512.jpg -------------------------------------------------------------------------------- /MxOnline/media/teacher/2017/09/QQ图片20170801222015.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/media/teacher/2017/09/QQ图片20170801222015.jpg -------------------------------------------------------------------------------- /MxOnline/media/teacher/2017/09/f3a5359d53c733fa28c3951b8c2c0cc5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/media/teacher/2017/09/f3a5359d53c733fa28c3951b8c2c0cc5.png -------------------------------------------------------------------------------- /MxOnline/static/css/aui_iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/css/aui_iconfont.ttf -------------------------------------------------------------------------------- /MxOnline/static/css/muke/course/course-comment.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/css/muke/course/course-comment.css -------------------------------------------------------------------------------- /MxOnline/static/images/01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/01.jpg -------------------------------------------------------------------------------- /MxOnline/static/images/01_mid.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/01_mid.jpg -------------------------------------------------------------------------------- /MxOnline/static/images/01_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/01_small.jpg -------------------------------------------------------------------------------- /MxOnline/static/images/02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/02.jpg -------------------------------------------------------------------------------- /MxOnline/static/images/02_mid.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/02_mid.jpg -------------------------------------------------------------------------------- /MxOnline/static/images/02_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/02_small.jpg -------------------------------------------------------------------------------- /MxOnline/static/images/57a801860001c34b12000460.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/57a801860001c34b12000460.jpg -------------------------------------------------------------------------------- /MxOnline/static/images/57aa86a0000145c512000460.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/57aa86a0000145c512000460.jpg -------------------------------------------------------------------------------- /MxOnline/static/images/about_nav_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/about_nav_bg.jpg -------------------------------------------------------------------------------- /MxOnline/static/images/aobama.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/aobama.png -------------------------------------------------------------------------------- /MxOnline/static/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/arrow.png -------------------------------------------------------------------------------- /MxOnline/static/images/arrow_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/arrow_g.png -------------------------------------------------------------------------------- /MxOnline/static/images/authentication.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/authentication.png -------------------------------------------------------------------------------- /MxOnline/static/images/bank1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/bank1.jpg -------------------------------------------------------------------------------- /MxOnline/static/images/bank2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/bank2.jpg -------------------------------------------------------------------------------- /MxOnline/static/images/bank3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/bank3.jpg -------------------------------------------------------------------------------- /MxOnline/static/images/bank4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/bank4.jpg -------------------------------------------------------------------------------- /MxOnline/static/images/bank5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/bank5.jpg -------------------------------------------------------------------------------- /MxOnline/static/images/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/banner.jpg -------------------------------------------------------------------------------- /MxOnline/static/images/banner_icon1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/banner_icon1.png -------------------------------------------------------------------------------- /MxOnline/static/images/banner_icon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/banner_icon2.png -------------------------------------------------------------------------------- /MxOnline/static/images/banner_icon3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/banner_icon3.png -------------------------------------------------------------------------------- /MxOnline/static/images/banner_icon4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/banner_icon4.png -------------------------------------------------------------------------------- /MxOnline/static/images/bgblack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/bgblack.png -------------------------------------------------------------------------------- /MxOnline/static/images/billbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/billbg.png -------------------------------------------------------------------------------- /MxOnline/static/images/billbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/billbox.png -------------------------------------------------------------------------------- /MxOnline/static/images/billboxactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/billboxactive.png -------------------------------------------------------------------------------- /MxOnline/static/images/billcheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/billcheck.png -------------------------------------------------------------------------------- /MxOnline/static/images/billcheckg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/billcheckg.png -------------------------------------------------------------------------------- /MxOnline/static/images/bjdx.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/bjdx.jpg -------------------------------------------------------------------------------- /MxOnline/static/images/btn1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/btn1.png -------------------------------------------------------------------------------- /MxOnline/static/images/btn2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/btn2.png -------------------------------------------------------------------------------- /MxOnline/static/images/btn3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/btn3.png -------------------------------------------------------------------------------- /MxOnline/static/images/btn4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/btn4.png -------------------------------------------------------------------------------- /MxOnline/static/images/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/check.png -------------------------------------------------------------------------------- /MxOnline/static/images/check2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/check2.png -------------------------------------------------------------------------------- /MxOnline/static/images/check3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/check3.png -------------------------------------------------------------------------------- /MxOnline/static/images/check4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/check4.png -------------------------------------------------------------------------------- /MxOnline/static/images/check_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/check_alt.png -------------------------------------------------------------------------------- /MxOnline/static/images/checkbox.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/checkbox.jpg -------------------------------------------------------------------------------- /MxOnline/static/images/checked.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/checked.jpg -------------------------------------------------------------------------------- /MxOnline/static/images/code.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/code.jpg -------------------------------------------------------------------------------- /MxOnline/static/images/companydes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/companydes.jpg -------------------------------------------------------------------------------- /MxOnline/static/images/companylogo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/companylogo.jpg -------------------------------------------------------------------------------- /MxOnline/static/images/companyrank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/companyrank.png -------------------------------------------------------------------------------- /MxOnline/static/images/compright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/compright.png -------------------------------------------------------------------------------- /MxOnline/static/images/contract.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/contract.jpg -------------------------------------------------------------------------------- /MxOnline/static/images/course.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/course.jpg -------------------------------------------------------------------------------- /MxOnline/static/images/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/delete.png -------------------------------------------------------------------------------- /MxOnline/static/images/diary-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/diary-edit.png -------------------------------------------------------------------------------- /MxOnline/static/images/dig_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/dig_close.png -------------------------------------------------------------------------------- /MxOnline/static/images/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/down.png -------------------------------------------------------------------------------- /MxOnline/static/images/drop_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/drop_plus.png -------------------------------------------------------------------------------- /MxOnline/static/images/drop_plus_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/drop_plus_g.png -------------------------------------------------------------------------------- /MxOnline/static/images/error-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/error-img.png -------------------------------------------------------------------------------- /MxOnline/static/images/feature1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/feature1.png -------------------------------------------------------------------------------- /MxOnline/static/images/feature2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/feature2.png -------------------------------------------------------------------------------- /MxOnline/static/images/feature3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/feature3.png -------------------------------------------------------------------------------- /MxOnline/static/images/feature4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/feature4.png -------------------------------------------------------------------------------- /MxOnline/static/images/feature5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/feature5.png -------------------------------------------------------------------------------- /MxOnline/static/images/feature6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/feature6.png -------------------------------------------------------------------------------- /MxOnline/static/images/filebg/avi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/filebg/avi.png -------------------------------------------------------------------------------- /MxOnline/static/images/filebg/cdr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/filebg/cdr.png -------------------------------------------------------------------------------- /MxOnline/static/images/filebg/csv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/filebg/csv.png -------------------------------------------------------------------------------- /MxOnline/static/images/filebg/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/filebg/doc.png -------------------------------------------------------------------------------- /MxOnline/static/images/filebg/jpg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/filebg/jpg.png -------------------------------------------------------------------------------- /MxOnline/static/images/filebg/mp3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/filebg/mp3.png -------------------------------------------------------------------------------- /MxOnline/static/images/filebg/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/filebg/pdf.png -------------------------------------------------------------------------------- /MxOnline/static/images/filebg/png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/filebg/png.png -------------------------------------------------------------------------------- /MxOnline/static/images/filebg/ppt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/filebg/ppt.png -------------------------------------------------------------------------------- /MxOnline/static/images/filebg/rar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/filebg/rar.png -------------------------------------------------------------------------------- /MxOnline/static/images/filebg/txt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/filebg/txt.png -------------------------------------------------------------------------------- /MxOnline/static/images/filebg/xls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/filebg/xls.png -------------------------------------------------------------------------------- /MxOnline/static/images/filebg/zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/filebg/zip.png -------------------------------------------------------------------------------- /MxOnline/static/images/filebg/复件 txt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/filebg/复件 txt.png -------------------------------------------------------------------------------- /MxOnline/static/images/fold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/fold.png -------------------------------------------------------------------------------- /MxOnline/static/images/footlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/footlogo.png -------------------------------------------------------------------------------- /MxOnline/static/images/fqy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/fqy.png -------------------------------------------------------------------------------- /MxOnline/static/images/g_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/g_star.png -------------------------------------------------------------------------------- /MxOnline/static/images/gj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/gj.png -------------------------------------------------------------------------------- /MxOnline/static/images/goback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/goback.png -------------------------------------------------------------------------------- /MxOnline/static/images/gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/gold.png -------------------------------------------------------------------------------- /MxOnline/static/images/group.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/group.jpg -------------------------------------------------------------------------------- /MxOnline/static/images/group_recommend.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/group_recommend.jpg -------------------------------------------------------------------------------- /MxOnline/static/images/gx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/gx.png -------------------------------------------------------------------------------- /MxOnline/static/images/h_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/h_star.png -------------------------------------------------------------------------------- /MxOnline/static/images/header_middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/header_middle.png -------------------------------------------------------------------------------- /MxOnline/static/images/help_index_pic.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/help_index_pic.gif -------------------------------------------------------------------------------- /MxOnline/static/images/homepage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/homepage.png -------------------------------------------------------------------------------- /MxOnline/static/images/ht-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/ht-top.png -------------------------------------------------------------------------------- /MxOnline/static/images/icon-diary-jl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/icon-diary-jl.png -------------------------------------------------------------------------------- /MxOnline/static/images/icon-diary-my.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/icon-diary-my.png -------------------------------------------------------------------------------- /MxOnline/static/images/icon-diary-user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/icon-diary-user.png -------------------------------------------------------------------------------- /MxOnline/static/images/icon-release-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/icon-release-active.png -------------------------------------------------------------------------------- /MxOnline/static/images/icon-release-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/icon-release-on.png -------------------------------------------------------------------------------- /MxOnline/static/images/icon-release-over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/icon-release-over.png -------------------------------------------------------------------------------- /MxOnline/static/images/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/icon.ico -------------------------------------------------------------------------------- /MxOnline/static/images/laba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/laba.png -------------------------------------------------------------------------------- /MxOnline/static/images/list_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/list_time.png -------------------------------------------------------------------------------- /MxOnline/static/images/login-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/login-bg.png -------------------------------------------------------------------------------- /MxOnline/static/images/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/logo.jpg -------------------------------------------------------------------------------- /MxOnline/static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/logo.png -------------------------------------------------------------------------------- /MxOnline/static/images/logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/logo2.png -------------------------------------------------------------------------------- /MxOnline/static/images/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/mask.png -------------------------------------------------------------------------------- /MxOnline/static/images/mayun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/mayun.png -------------------------------------------------------------------------------- /MxOnline/static/images/module1_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/module1_1.jpg -------------------------------------------------------------------------------- /MxOnline/static/images/module1_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/module1_2.jpg -------------------------------------------------------------------------------- /MxOnline/static/images/module3_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/module3_1.jpg -------------------------------------------------------------------------------- /MxOnline/static/images/module4_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/module4_1.jpg -------------------------------------------------------------------------------- /MxOnline/static/images/module4_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/module4_2.jpg -------------------------------------------------------------------------------- /MxOnline/static/images/module4_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/module4_3.jpg -------------------------------------------------------------------------------- /MxOnline/static/images/module4_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/module4_4.jpg -------------------------------------------------------------------------------- /MxOnline/static/images/module4_4_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/module4_4_1.jpg -------------------------------------------------------------------------------- /MxOnline/static/images/module4_6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/module4_6.jpg -------------------------------------------------------------------------------- /MxOnline/static/images/module5_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/module5_1.jpg -------------------------------------------------------------------------------- /MxOnline/static/images/module5_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/module5_2.jpg -------------------------------------------------------------------------------- /MxOnline/static/images/module6_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/module6_1.jpg -------------------------------------------------------------------------------- /MxOnline/static/images/module6bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/module6bg.png -------------------------------------------------------------------------------- /MxOnline/static/images/my.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/my.jpg -------------------------------------------------------------------------------- /MxOnline/static/images/mysql.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/mysql.jpg -------------------------------------------------------------------------------- /MxOnline/static/images/nav_arrow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/nav_arrow.jpg -------------------------------------------------------------------------------- /MxOnline/static/images/nav_hot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/nav_hot.png -------------------------------------------------------------------------------- /MxOnline/static/images/njdx.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/njdx.jpg -------------------------------------------------------------------------------- /MxOnline/static/images/oyf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/oyf.png -------------------------------------------------------------------------------- /MxOnline/static/images/path2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/path2.png -------------------------------------------------------------------------------- /MxOnline/static/images/path3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/path3.png -------------------------------------------------------------------------------- /MxOnline/static/images/path4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/path4.png -------------------------------------------------------------------------------- /MxOnline/static/images/path5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/path5.png -------------------------------------------------------------------------------- /MxOnline/static/images/path6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/path6.png -------------------------------------------------------------------------------- /MxOnline/static/images/pathbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/pathbg.png -------------------------------------------------------------------------------- /MxOnline/static/images/pathbg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/pathbg2.png -------------------------------------------------------------------------------- /MxOnline/static/images/pay1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/pay1.jpg -------------------------------------------------------------------------------- /MxOnline/static/images/pay2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/pay2.jpg -------------------------------------------------------------------------------- /MxOnline/static/images/pay3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/pay3.jpg -------------------------------------------------------------------------------- /MxOnline/static/images/pay4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/pay4.jpg -------------------------------------------------------------------------------- /MxOnline/static/images/paypic1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/paypic1.png -------------------------------------------------------------------------------- /MxOnline/static/images/paypic2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/paypic2.png -------------------------------------------------------------------------------- /MxOnline/static/images/pen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/pen.png -------------------------------------------------------------------------------- /MxOnline/static/images/pic1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/pic1.png -------------------------------------------------------------------------------- /MxOnline/static/images/pic10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/pic10.png -------------------------------------------------------------------------------- /MxOnline/static/images/pic11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/pic11.png -------------------------------------------------------------------------------- /MxOnline/static/images/pic12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/pic12.png -------------------------------------------------------------------------------- /MxOnline/static/images/pic13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/pic13.png -------------------------------------------------------------------------------- /MxOnline/static/images/pic1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/pic1_1.png -------------------------------------------------------------------------------- /MxOnline/static/images/pic2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/pic2.png -------------------------------------------------------------------------------- /MxOnline/static/images/pic3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/pic3.png -------------------------------------------------------------------------------- /MxOnline/static/images/pic4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/pic4.png -------------------------------------------------------------------------------- /MxOnline/static/images/pic403.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/pic403.png -------------------------------------------------------------------------------- /MxOnline/static/images/pic404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/pic404.png -------------------------------------------------------------------------------- /MxOnline/static/images/pic5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/pic5.png -------------------------------------------------------------------------------- /MxOnline/static/images/pic503.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/pic503.png -------------------------------------------------------------------------------- /MxOnline/static/images/pic6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/pic6.png -------------------------------------------------------------------------------- /MxOnline/static/images/pic7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/pic7.png -------------------------------------------------------------------------------- /MxOnline/static/images/pic8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/pic8.png -------------------------------------------------------------------------------- /MxOnline/static/images/pic9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/pic9.png -------------------------------------------------------------------------------- /MxOnline/static/images/pixel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/pixel.gif -------------------------------------------------------------------------------- /MxOnline/static/images/plus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/plus.jpg -------------------------------------------------------------------------------- /MxOnline/static/images/pop-tips-info-arr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/pop-tips-info-arr.gif -------------------------------------------------------------------------------- /MxOnline/static/images/python-zhengze.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/python-zhengze.jpg -------------------------------------------------------------------------------- /MxOnline/static/images/python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/python.png -------------------------------------------------------------------------------- /MxOnline/static/images/qhdx-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/qhdx-logo.png -------------------------------------------------------------------------------- /MxOnline/static/images/qhdx.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/qhdx.jpg -------------------------------------------------------------------------------- /MxOnline/static/images/r_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/r_star.png -------------------------------------------------------------------------------- /MxOnline/static/images/rankgold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/rankgold.png -------------------------------------------------------------------------------- /MxOnline/static/images/rankgreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/rankgreen.png -------------------------------------------------------------------------------- /MxOnline/static/images/release1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/release1.png -------------------------------------------------------------------------------- /MxOnline/static/images/release2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/release2.png -------------------------------------------------------------------------------- /MxOnline/static/images/release3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/release3.png -------------------------------------------------------------------------------- /MxOnline/static/images/release4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/release4.png -------------------------------------------------------------------------------- /MxOnline/static/images/release5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/release5.png -------------------------------------------------------------------------------- /MxOnline/static/images/release6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/release6.png -------------------------------------------------------------------------------- /MxOnline/static/images/release7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/release7.png -------------------------------------------------------------------------------- /MxOnline/static/images/release8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/release8.png -------------------------------------------------------------------------------- /MxOnline/static/images/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/right.png -------------------------------------------------------------------------------- /MxOnline/static/images/rightform1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/rightform1.png -------------------------------------------------------------------------------- /MxOnline/static/images/rightform2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/rightform2.png -------------------------------------------------------------------------------- /MxOnline/static/images/rightform3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/rightform3.png -------------------------------------------------------------------------------- /MxOnline/static/images/rolling.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/rolling.gif -------------------------------------------------------------------------------- /MxOnline/static/images/sass.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/sass.jpg -------------------------------------------------------------------------------- /MxOnline/static/images/scores.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/scores.png -------------------------------------------------------------------------------- /MxOnline/static/images/search_btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/search_btn.png -------------------------------------------------------------------------------- /MxOnline/static/images/select-arr-default.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/select-arr-default.gif -------------------------------------------------------------------------------- /MxOnline/static/images/select_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/select_arrow.png -------------------------------------------------------------------------------- /MxOnline/static/images/select_arrow2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/select_arrow2.png -------------------------------------------------------------------------------- /MxOnline/static/images/send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/send.png -------------------------------------------------------------------------------- /MxOnline/static/images/share_c1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/share_c1.png -------------------------------------------------------------------------------- /MxOnline/static/images/share_c1_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/share_c1_g.png -------------------------------------------------------------------------------- /MxOnline/static/images/share_c2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/share_c2.png -------------------------------------------------------------------------------- /MxOnline/static/images/share_c3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/share_c3.png -------------------------------------------------------------------------------- /MxOnline/static/images/share_c4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/share_c4.png -------------------------------------------------------------------------------- /MxOnline/static/images/share_c5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/share_c5.png -------------------------------------------------------------------------------- /MxOnline/static/images/share_c6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/share_c6.png -------------------------------------------------------------------------------- /MxOnline/static/images/share_c7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/share_c7.png -------------------------------------------------------------------------------- /MxOnline/static/images/share_c8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/share_c8.png -------------------------------------------------------------------------------- /MxOnline/static/images/share_c9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/share_c9.png -------------------------------------------------------------------------------- /MxOnline/static/images/side1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/side1.png -------------------------------------------------------------------------------- /MxOnline/static/images/side1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/side1_1.png -------------------------------------------------------------------------------- /MxOnline/static/images/side2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/side2.png -------------------------------------------------------------------------------- /MxOnline/static/images/side2_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/side2_1.png -------------------------------------------------------------------------------- /MxOnline/static/images/side3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/side3.png -------------------------------------------------------------------------------- /MxOnline/static/images/side3_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/side3_1.png -------------------------------------------------------------------------------- /MxOnline/static/images/side4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/side4.png -------------------------------------------------------------------------------- /MxOnline/static/images/side4_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/side4_1.png -------------------------------------------------------------------------------- /MxOnline/static/images/slide_l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/slide_l.png -------------------------------------------------------------------------------- /MxOnline/static/images/slide_l_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/slide_l_1.png -------------------------------------------------------------------------------- /MxOnline/static/images/slide_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/slide_r.png -------------------------------------------------------------------------------- /MxOnline/static/images/slide_r_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/slide_r_1.png -------------------------------------------------------------------------------- /MxOnline/static/images/star-btn-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/star-btn-hover.png -------------------------------------------------------------------------------- /MxOnline/static/images/star-btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/star-btn.png -------------------------------------------------------------------------------- /MxOnline/static/images/star-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/star-hover.png -------------------------------------------------------------------------------- /MxOnline/static/images/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/star.png -------------------------------------------------------------------------------- /MxOnline/static/images/tab-jt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/tab-jt.png -------------------------------------------------------------------------------- /MxOnline/static/images/tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/tab.png -------------------------------------------------------------------------------- /MxOnline/static/images/tel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/tel.png -------------------------------------------------------------------------------- /MxOnline/static/images/tell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/tell.png -------------------------------------------------------------------------------- /MxOnline/static/images/time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/time.png -------------------------------------------------------------------------------- /MxOnline/static/images/top_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/top_down.png -------------------------------------------------------------------------------- /MxOnline/static/images/unfold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/unfold.png -------------------------------------------------------------------------------- /MxOnline/static/images/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/up.png -------------------------------------------------------------------------------- /MxOnline/static/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/upload.png -------------------------------------------------------------------------------- /MxOnline/static/images/user.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/user.jpg -------------------------------------------------------------------------------- /MxOnline/static/images/weixi_icon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/weixi_icon2.png -------------------------------------------------------------------------------- /MxOnline/static/images/weixi_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/weixi_image.png -------------------------------------------------------------------------------- /MxOnline/static/images/weixi_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/weixi_sm.png -------------------------------------------------------------------------------- /MxOnline/static/images/word403.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/word403.png -------------------------------------------------------------------------------- /MxOnline/static/images/word503.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/word503.png -------------------------------------------------------------------------------- /MxOnline/static/images/x_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/x_alt.png -------------------------------------------------------------------------------- /MxOnline/static/images/zwj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/images/zwj.png -------------------------------------------------------------------------------- /MxOnline/static/img/background.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/img/background.gif -------------------------------------------------------------------------------- /MxOnline/static/img/cancel-off-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/img/cancel-off-big.png -------------------------------------------------------------------------------- /MxOnline/static/img/cancel-on-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/img/cancel-on-big.png -------------------------------------------------------------------------------- /MxOnline/static/img/coffee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/img/coffee.png -------------------------------------------------------------------------------- /MxOnline/static/img/face-a-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/img/face-a-off.png -------------------------------------------------------------------------------- /MxOnline/static/img/face-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/img/face-a.png -------------------------------------------------------------------------------- /MxOnline/static/img/face-b-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/img/face-b-off.png -------------------------------------------------------------------------------- /MxOnline/static/img/face-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/img/face-b.png -------------------------------------------------------------------------------- /MxOnline/static/img/face-c-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/img/face-c-off.png -------------------------------------------------------------------------------- /MxOnline/static/img/face-c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/img/face-c.png -------------------------------------------------------------------------------- /MxOnline/static/img/face-d-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/img/face-d-off.png -------------------------------------------------------------------------------- /MxOnline/static/img/face-d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/img/face-d.png -------------------------------------------------------------------------------- /MxOnline/static/img/face-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/img/face-off.png -------------------------------------------------------------------------------- /MxOnline/static/img/medal-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/img/medal-off.png -------------------------------------------------------------------------------- /MxOnline/static/img/medal-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/img/medal-on.png -------------------------------------------------------------------------------- /MxOnline/static/img/star-half-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/img/star-half-big.png -------------------------------------------------------------------------------- /MxOnline/static/img/star-off-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/img/star-off-big.png -------------------------------------------------------------------------------- /MxOnline/static/img/star-on-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/img/star-on-big.png -------------------------------------------------------------------------------- /MxOnline/static/js/autocomplete-init.js: -------------------------------------------------------------------------------- 1 | 2 | function makeAutocomplete(sel) { 3 | sel.autocomplete('/examples/autocomplete-products/', { 4 | delay: 200, 5 | formatItem: function(row) { 6 | return row[1]; 7 | } 8 | }); 9 | } 10 | 11 | $(function() { 12 | makeAutocomplete($('.autocomplete-me')); 13 | }) 14 | -------------------------------------------------------------------------------- /MxOnline/static/js/plugins/laydate/skins/default/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/js/plugins/laydate/skins/default/icon.png -------------------------------------------------------------------------------- /MxOnline/static/js/plugins/layer/skin/default/icon-ext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/js/plugins/layer/skin/default/icon-ext.png -------------------------------------------------------------------------------- /MxOnline/static/js/plugins/layer/skin/default/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/js/plugins/layer/skin/default/icon.png -------------------------------------------------------------------------------- /MxOnline/static/js/plugins/layer/skin/default/loading-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/js/plugins/layer/skin/default/loading-0.gif -------------------------------------------------------------------------------- /MxOnline/static/js/plugins/layer/skin/default/loading-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/js/plugins/layer/skin/default/loading-1.gif -------------------------------------------------------------------------------- /MxOnline/static/js/plugins/layer/skin/default/loading-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/js/plugins/layer/skin/default/loading-2.gif -------------------------------------------------------------------------------- /MxOnline/static/js/plugins/queryCity/images/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/js/plugins/queryCity/images/Thumbs.db -------------------------------------------------------------------------------- /MxOnline/static/js/plugins/queryCity/images/bg_mc_0113_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/js/plugins/queryCity/images/bg_mc_0113_1.png -------------------------------------------------------------------------------- /MxOnline/static/js/plugins/queryCity/images/bg_mc_0113_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/js/plugins/queryCity/images/bg_mc_0113_2.png -------------------------------------------------------------------------------- /MxOnline/static/js/plugins/queryCity/images/bg_mc_0113_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/js/plugins/queryCity/images/bg_mc_0113_3.png -------------------------------------------------------------------------------- /MxOnline/static/js/plugins/queryCity/images/bg_mc_0113_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/js/plugins/queryCity/images/bg_mc_0113_4.png -------------------------------------------------------------------------------- /MxOnline/static/js/plugins/queryCity/images/bg_mc_0130_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/js/plugins/queryCity/images/bg_mc_0130_1.png -------------------------------------------------------------------------------- /MxOnline/static/js/plugins/queryCity/images/bg_mc_0130_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/js/plugins/queryCity/images/bg_mc_0130_2.png -------------------------------------------------------------------------------- /MxOnline/static/js/plugins/queryCity/images/ts-indexcity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxOnline/static/js/plugins/queryCity/images/ts-indexcity.png -------------------------------------------------------------------------------- /MxOnline/templates/active_fail.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 激活失败 6 | 7 | 8 |

链接失效

9 | 10 | -------------------------------------------------------------------------------- /MxOnline/templates/send_success.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 发送成功 6 | 7 | 8 | 邮件发送成功 9 | 10 | -------------------------------------------------------------------------------- /MxShop/.idea/dictionaries/Qin.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /MxShop/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | -------------------------------------------------------------------------------- /MxShop/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /MxShop/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /MxShop/MxShop/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/MxShop/__init__.py -------------------------------------------------------------------------------- /MxShop/apps/__init__.py: -------------------------------------------------------------------------------- 1 | # _*_ coding: utf-8 _*_ 2 | __author__ = 'LennonChin' 3 | __date__ = '2017/10/1 21:05' -------------------------------------------------------------------------------- /MxShop/apps/goods/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/apps/goods/__init__.py -------------------------------------------------------------------------------- /MxShop/apps/goods/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /MxShop/apps/goods/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class GoodsConfig(AppConfig): 5 | name = 'goods' 6 | verbose_name = "商品" -------------------------------------------------------------------------------- /MxShop/apps/goods/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/apps/goods/migrations/__init__.py -------------------------------------------------------------------------------- /MxShop/apps/goods/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /MxShop/apps/trade/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/apps/trade/__init__.py -------------------------------------------------------------------------------- /MxShop/apps/trade/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /MxShop/apps/trade/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class TradeConfig(AppConfig): 5 | name = 'trade' 6 | verbose_name = "交易" 7 | -------------------------------------------------------------------------------- /MxShop/apps/trade/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/apps/trade/migrations/__init__.py -------------------------------------------------------------------------------- /MxShop/apps/trade/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /MxShop/apps/user_operation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/apps/user_operation/__init__.py -------------------------------------------------------------------------------- /MxShop/apps/user_operation/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /MxShop/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 | -------------------------------------------------------------------------------- /MxShop/apps/user_operation/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/apps/user_operation/migrations/__init__.py -------------------------------------------------------------------------------- /MxShop/apps/user_operation/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /MxShop/apps/users/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/apps/users/__init__.py -------------------------------------------------------------------------------- /MxShop/apps/users/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /MxShop/apps/users/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class UsersConfig(AppConfig): 5 | name = 'users' 6 | verbose_name = "用户" 7 | 8 | def ready(self): 9 | import users.signals 10 | -------------------------------------------------------------------------------- /MxShop/apps/users/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/apps/users/migrations/__init__.py -------------------------------------------------------------------------------- /MxShop/apps/users/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /MxShop/apps/utils/__init__.py: -------------------------------------------------------------------------------- 1 | # _*_ coding: utf-8 _*_ 2 | __author__ = 'LennonChin' 3 | __date__ = '2017/10/18 20:02' -------------------------------------------------------------------------------- /MxShop/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/db.sqlite3 -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/__init__.py -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/UEditorSnapscreen.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/UEditorSnapscreen.exe -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/fileTypeImages/icon_chm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/fileTypeImages/icon_chm.gif -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/fileTypeImages/icon_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/fileTypeImages/icon_default.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/fileTypeImages/icon_doc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/fileTypeImages/icon_doc.gif -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/fileTypeImages/icon_exe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/fileTypeImages/icon_exe.gif -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/fileTypeImages/icon_jpg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/fileTypeImages/icon_jpg.gif -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/fileTypeImages/icon_mp3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/fileTypeImages/icon_mp3.gif -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/fileTypeImages/icon_mv.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/fileTypeImages/icon_mv.gif -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/fileTypeImages/icon_pdf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/fileTypeImages/icon_pdf.gif -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/fileTypeImages/icon_ppt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/fileTypeImages/icon_ppt.gif -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/fileTypeImages/icon_psd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/fileTypeImages/icon_psd.gif -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/fileTypeImages/icon_rar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/fileTypeImages/icon_rar.gif -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/fileTypeImages/icon_txt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/fileTypeImages/icon_txt.gif -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/fileTypeImages/icon_xls.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/fileTypeImages/icon_xls.gif -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/images/alignicon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/images/alignicon.gif -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/images/alignicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/images/alignicon.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/images/bg.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/images/file-icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/images/file-icons.gif -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/images/file-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/images/file-icons.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/images/icons.gif -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/images/icons.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/images/image.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/images/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/images/progress.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/images/success.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/images/success.gif -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/attachment/images/success.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/background/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/background/images/bg.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/background/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/background/images/success.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/charts/images/charts0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/charts/images/charts0.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/charts/images/charts1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/charts/images/charts1.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/charts/images/charts2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/charts/images/charts2.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/charts/images/charts3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/charts/images/charts3.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/charts/images/charts4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/charts/images/charts4.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/charts/images/charts5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/charts/images/charts5.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/emotion/images/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/emotion/images/0.gif -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/emotion/images/bface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/emotion/images/bface.gif -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/emotion/images/cface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/emotion/images/cface.gif -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/emotion/images/fface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/emotion/images/fface.gif -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/emotion/images/jxface2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/emotion/images/jxface2.gif -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/emotion/images/neweditor-tab-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/emotion/images/neweditor-tab-bg.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/emotion/images/tface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/emotion/images/tface.gif -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/emotion/images/wface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/emotion/images/wface.gif -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/emotion/images/yface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/emotion/images/yface.gif -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/image/images/alignicon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/image/images/alignicon.jpg -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/image/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/image/images/bg.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/image/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/image/images/icons.gif -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/image/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/image/images/icons.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/image/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/image/images/image.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/image/images/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/image/images/progress.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/image/images/success.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/image/images/success.gif -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/image/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/image/images/success.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/scrawl/images/addimg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/scrawl/images/addimg.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/scrawl/images/brush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/scrawl/images/brush.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/scrawl/images/delimg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/scrawl/images/delimg.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/scrawl/images/delimgH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/scrawl/images/delimgH.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/scrawl/images/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/scrawl/images/empty.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/scrawl/images/emptyH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/scrawl/images/emptyH.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/scrawl/images/eraser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/scrawl/images/eraser.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/scrawl/images/redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/scrawl/images/redo.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/scrawl/images/redoH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/scrawl/images/redoH.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/scrawl/images/scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/scrawl/images/scale.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/scrawl/images/scaleH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/scrawl/images/scaleH.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/scrawl/images/size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/scrawl/images/size.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/scrawl/images/undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/scrawl/images/undo.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/scrawl/images/undoH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/scrawl/images/undoH.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/table/dragicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/table/dragicon.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/template/images/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/template/images/bg.gif -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/template/images/pre0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/template/images/pre0.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/template/images/pre1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/template/images/pre1.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/template/images/pre2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/template/images/pre2.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/template/images/pre3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/template/images/pre3.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/template/images/pre4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/template/images/pre4.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/video/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/video/images/bg.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/video/images/center_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/video/images/center_focus.jpg -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/video/images/file-icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/video/images/file-icons.gif -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/video/images/file-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/video/images/file-icons.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/video/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/video/images/icons.gif -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/video/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/video/images/icons.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/video/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/video/images/image.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/video/images/left_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/video/images/left_focus.jpg -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/video/images/none_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/video/images/none_focus.jpg -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/video/images/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/video/images/progress.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/video/images/right_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/video/images/right_focus.jpg -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/video/images/success.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/video/images/success.gif -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/video/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/video/images/success.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/wordimage/fClipboard_ueditor.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/wordimage/fClipboard_ueditor.swf -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/wordimage/imageUploader.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/dialogs/wordimage/imageUploader.swf -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/lang/en/images/addimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/lang/en/images/addimage.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/lang/en/images/alldeletebtnhoverskin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/lang/en/images/alldeletebtnhoverskin.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/lang/en/images/alldeletebtnupskin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/lang/en/images/alldeletebtnupskin.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/lang/en/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/lang/en/images/background.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/lang/en/images/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/lang/en/images/button.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/lang/en/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/lang/en/images/copy.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/lang/en/images/deletedisable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/lang/en/images/deletedisable.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/lang/en/images/deleteenable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/lang/en/images/deleteenable.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/lang/en/images/listbackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/lang/en/images/listbackground.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/lang/en/images/localimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/lang/en/images/localimage.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/lang/en/images/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/lang/en/images/music.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/lang/en/images/rotateleftdisable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/lang/en/images/rotateleftdisable.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/lang/en/images/rotateleftenable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/lang/en/images/rotateleftenable.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/lang/en/images/rotaterightdisable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/lang/en/images/rotaterightdisable.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/lang/en/images/rotaterightenable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/lang/en/images/rotaterightenable.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/lang/en/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/lang/en/images/upload.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/lang/zh-cn/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/lang/zh-cn/images/copy.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/lang/zh-cn/images/localimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/lang/zh-cn/images/localimage.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/lang/zh-cn/images/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/lang/zh-cn/images/music.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/lang/zh-cn/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/lang/zh-cn/images/upload.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/anchor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/anchor.gif -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/arrow.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/arrow_down.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/arrow_up.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/button-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/button-bg.gif -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/cancelbutton.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/cancelbutton.gif -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/charts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/charts.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/cursor_h.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/cursor_h.gif -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/cursor_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/cursor_h.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/cursor_v.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/cursor_v.gif -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/cursor_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/cursor_v.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/dialog-title-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/dialog-title-bg.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/fileScan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/fileScan.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/highlighted.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/highlighted.gif -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/icons-all.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/icons-all.gif -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/icons.gif -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/icons.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/loaderror.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/loaderror.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/loading.gif -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/lock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/lock.gif -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/neweditor-tab-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/neweditor-tab-bg.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/pagebreak.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/pagebreak.gif -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/scale.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/sortable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/sortable.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/spacer.gif -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/sparator_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/sparator_v.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/table-cell-align.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/table-cell-align.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/tangram-colorpicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/tangram-colorpicker.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/toolbar_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/toolbar_bg.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/unhighlighted.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/unhighlighted.gif -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/upload.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/videologo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/videologo.gif -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/word.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/word.gif -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/wordpaste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/themes/default/images/wordpaste.png -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/themes/iframe.css: -------------------------------------------------------------------------------- 1 | /*可以在这里添加你自己的css*/ 2 | -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/third-party/snapscreen/UEditorSnapscreen.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/third-party/snapscreen/UEditorSnapscreen.exe -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/third-party/video-js/font/vjs.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/third-party/video-js/font/vjs.eot -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/third-party/video-js/font/vjs.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/third-party/video-js/font/vjs.ttf -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/third-party/video-js/font/vjs.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/third-party/video-js/font/vjs.woff -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/third-party/video-js/video-js.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/third-party/video-js/video-js.swf -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/third-party/webuploader/Uploader.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/third-party/webuploader/Uploader.swf -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/static/ueditor/third-party/zeroclipboard/ZeroClipboard.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/DjangoUeditor/static/ueditor/third-party/zeroclipboard/ZeroClipboard.swf -------------------------------------------------------------------------------- /MxShop/extra_apps/DjangoUeditor/test_try.py: -------------------------------------------------------------------------------- 1 | # coding:utf-8 2 | from utils import FileSize 3 | MF = FileSize("36723678") 4 | print(MF) 5 | -------------------------------------------------------------------------------- /MxShop/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 | -------------------------------------------------------------------------------- /MxShop/extra_apps/__init__.py: -------------------------------------------------------------------------------- 1 | # _*_ coding: utf-8 _*_ 2 | __author__ = 'LennonChin' 3 | __date__ = '2017/10/1 21:05' -------------------------------------------------------------------------------- /MxShop/extra_apps/social_core/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '1.4.0' 2 | -------------------------------------------------------------------------------- /MxShop/extra_apps/social_core/backends/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/social_core/backends/__init__.py -------------------------------------------------------------------------------- /MxShop/extra_apps/social_core/backends/aol.py: -------------------------------------------------------------------------------- 1 | """ 2 | AOL OpenId backend, docs at: 3 | https://python-social-auth.readthedocs.io/en/latest/backends/aol.html 4 | """ 5 | from .open_id import OpenIdAuth 6 | 7 | 8 | class AOLOpenId(OpenIdAuth): 9 | name = 'aol' 10 | URL = 'http://openid.aol.com' 11 | -------------------------------------------------------------------------------- /MxShop/extra_apps/social_core/backends/email.py: -------------------------------------------------------------------------------- 1 | """ 2 | Legacy Email backend, docs at: 3 | https://python-social-auth.readthedocs.io/en/latest/backends/email.html 4 | """ 5 | from .legacy import LegacyAuth 6 | 7 | 8 | class EmailAuth(LegacyAuth): 9 | name = 'email' 10 | ID_KEY = 'email' 11 | REQUIRES_EMAIL_VALIDATION = True 12 | EXTRA_DATA = ['email'] 13 | -------------------------------------------------------------------------------- /MxShop/extra_apps/social_core/backends/fedora.py: -------------------------------------------------------------------------------- 1 | """ 2 | Fedora OpenId backend, docs at: 3 | https://python-social-auth.readthedocs.io/en/latest/backends/fedora.html 4 | """ 5 | from .open_id import OpenIdAuth 6 | 7 | 8 | class FedoraOpenId(OpenIdAuth): 9 | name = 'fedora' 10 | URL = 'https://id.fedoraproject.org' 11 | USERNAME_KEY = 'nickname' 12 | -------------------------------------------------------------------------------- /MxShop/extra_apps/social_core/backends/launchpad.py: -------------------------------------------------------------------------------- 1 | """ 2 | Launchpad OpenId backend 3 | """ 4 | 5 | from .open_id import OpenIdAuth 6 | 7 | 8 | class LaunchpadOpenId(OpenIdAuth): 9 | name = 'launchpad' 10 | URL = 'https://login.launchpad.net' 11 | USERNAME_KEY = 'nickname' 12 | -------------------------------------------------------------------------------- /MxShop/extra_apps/social_core/backends/username.py: -------------------------------------------------------------------------------- 1 | """ 2 | Legacy Username backend, docs at: 3 | https://python-social-auth.readthedocs.io/en/latest/backends/username.html 4 | """ 5 | from .legacy import LegacyAuth 6 | 7 | 8 | class UsernameAuth(LegacyAuth): 9 | name = 'username' 10 | ID_KEY = 'username' 11 | EXTRA_DATA = ['username'] 12 | -------------------------------------------------------------------------------- /MxShop/extra_apps/social_core/pipeline/debug.py: -------------------------------------------------------------------------------- 1 | from pprint import pprint 2 | 3 | 4 | def debug(response, details, *args, **kwargs): 5 | print('=' * 80) 6 | pprint(response) 7 | print('=' * 80) 8 | pprint(details) 9 | print('=' * 80) 10 | pprint(args) 11 | print('=' * 80) 12 | pprint(kwargs) 13 | print('=' * 80) 14 | -------------------------------------------------------------------------------- /MxShop/extra_apps/social_core/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/social_core/tests/__init__.py -------------------------------------------------------------------------------- /MxShop/extra_apps/social_core/tests/actions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/social_core/tests/actions/__init__.py -------------------------------------------------------------------------------- /MxShop/extra_apps/social_core/tests/backends/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/social_core/tests/backends/__init__.py -------------------------------------------------------------------------------- /MxShop/extra_apps/social_core/tests/requirements-base.txt: -------------------------------------------------------------------------------- 1 | httpretty==0.6.5 2 | coverage>=3.6 3 | nose>=1.2.1 4 | rednose>=0.4.1 5 | -------------------------------------------------------------------------------- /MxShop/extra_apps/social_core/tests/requirements-pypy.txt: -------------------------------------------------------------------------------- 1 | -r requirements-base.txt 2 | unittest2==0.5.1 3 | mock==1.0.1 4 | -------------------------------------------------------------------------------- /MxShop/extra_apps/social_core/tests/requirements-python2.txt: -------------------------------------------------------------------------------- 1 | -r requirements-base.txt 2 | unittest2==0.5.1 3 | mock==1.0.1 4 | -------------------------------------------------------------------------------- /MxShop/extra_apps/social_core/tests/requirements-python3.txt: -------------------------------------------------------------------------------- 1 | -r requirements-base.txt 2 | unittest2py3k==0.5.1 3 | -------------------------------------------------------------------------------- /MxShop/extra_apps/social_core/tests/requirements.txt: -------------------------------------------------------------------------------- 1 | -r requirements-python2.txt 2 | -------------------------------------------------------------------------------- /MxShop/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 -------------------------------------------------------------------------------- /MxShop/extra_apps/xadmin/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/xadmin/migrations/__init__.py -------------------------------------------------------------------------------- /MxShop/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 | } -------------------------------------------------------------------------------- /MxShop/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 | } -------------------------------------------------------------------------------- /MxShop/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 | } -------------------------------------------------------------------------------- /MxShop/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) -------------------------------------------------------------------------------- /MxShop/extra_apps/xadmin/static/xadmin/vendor/bootstrap-image-gallery/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/xadmin/static/xadmin/vendor/bootstrap-image-gallery/img/loading.gif -------------------------------------------------------------------------------- /MxShop/extra_apps/xadmin/static/xadmin/vendor/bootstrap-modal/img/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/xadmin/static/xadmin/vendor/bootstrap-modal/img/ajax-loader.gif -------------------------------------------------------------------------------- /MxShop/extra_apps/xadmin/static/xadmin/vendor/bootstrap-multiselect/css/bootstrap-multiselect.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/xadmin/static/xadmin/vendor/bootstrap-multiselect/css/bootstrap-multiselect.css -------------------------------------------------------------------------------- /MxShop/extra_apps/xadmin/static/xadmin/vendor/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/xadmin/static/xadmin/vendor/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /MxShop/extra_apps/xadmin/static/xadmin/vendor/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/xadmin/static/xadmin/vendor/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /MxShop/extra_apps/xadmin/static/xadmin/vendor/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/xadmin/static/xadmin/vendor/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /MxShop/extra_apps/xadmin/static/xadmin/vendor/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/xadmin/static/xadmin/vendor/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /MxShop/extra_apps/xadmin/static/xadmin/vendor/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/xadmin/static/xadmin/vendor/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /MxShop/extra_apps/xadmin/static/xadmin/vendor/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/xadmin/static/xadmin/vendor/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /MxShop/extra_apps/xadmin/static/xadmin/vendor/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/xadmin/static/xadmin/vendor/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /MxShop/extra_apps/xadmin/static/xadmin/vendor/select2/select2-spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/xadmin/static/xadmin/vendor/select2/select2-spinner.gif -------------------------------------------------------------------------------- /MxShop/extra_apps/xadmin/static/xadmin/vendor/select2/select2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/xadmin/static/xadmin/vendor/select2/select2.png -------------------------------------------------------------------------------- /MxShop/extra_apps/xadmin/static/xadmin/vendor/select2/select2x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/xadmin/static/xadmin/vendor/select2/select2x2.png -------------------------------------------------------------------------------- /MxShop/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 | -------------------------------------------------------------------------------- /MxShop/extra_apps/xadmin/templates/xadmin/blocks/modal_list.left_navbar.quickfilter.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MxShop/extra_apps/xadmin/templates/xadmin/blocks/model_list.top_toolbar.saveorder.html: -------------------------------------------------------------------------------- 1 | {% load i18n %} 2 | 7 | -------------------------------------------------------------------------------- /MxShop/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 %} -------------------------------------------------------------------------------- /MxShop/extra_apps/xadmin/templates/xadmin/includes/toggle_back.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MxShop/extra_apps/xadmin/templates/xadmin/includes/toggle_menu.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MxShop/extra_apps/xadmin/templates/xadmin/layout/field_value_td.html: -------------------------------------------------------------------------------- 1 | 2 | {{ result.val }} 3 | 4 | -------------------------------------------------------------------------------- /MxShop/extra_apps/xadmin/templates/xadmin/views/quick_detail.html: -------------------------------------------------------------------------------- 1 | {% load i18n %} 2 | {% load xadmin_tags %} 3 | {% load crispy_forms_tags %} 4 | {% crispy form %} -------------------------------------------------------------------------------- /MxShop/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 }} -------------------------------------------------------------------------------- /MxShop/extra_apps/xadmin/templatetags/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/extra_apps/xadmin/templatetags/__init__.py -------------------------------------------------------------------------------- /MxShop/media/banner/images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/media/banner/images/1.jpg -------------------------------------------------------------------------------- /MxShop/media/banner/images/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/media/banner/images/2.jpg -------------------------------------------------------------------------------- /MxShop/media/banner/images/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/media/banner/images/3.jpg -------------------------------------------------------------------------------- /MxShop/media/brand/images/lyfs-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/media/brand/images/lyfs-1.jpg -------------------------------------------------------------------------------- /MxShop/media/brand/images/lyfs-1_BgoxkQP.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/media/brand/images/lyfs-1_BgoxkQP.jpg -------------------------------------------------------------------------------- /MxShop/media/brand/images/scsg-2_s2g3L7M.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/media/brand/images/scsg-2_s2g3L7M.jpg -------------------------------------------------------------------------------- /MxShop/media/brand/images/scsg-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/media/brand/images/scsg-3.jpg -------------------------------------------------------------------------------- /MxShop/media/brand/images/sxsp-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/media/brand/images/sxsp-2.jpg -------------------------------------------------------------------------------- /MxShop/media/brand/images/sxsp-2_Di4UEjS.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/media/brand/images/sxsp-2_Di4UEjS.jpg -------------------------------------------------------------------------------- /MxShop/media/goods/images/10_P_1448944572085.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/media/goods/images/10_P_1448944572085.jpg -------------------------------------------------------------------------------- /MxShop/media/goods/images/11_P_1448944388277.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/media/goods/images/11_P_1448944388277.jpg -------------------------------------------------------------------------------- /MxShop/media/goods/images/12_P_1448947547989.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/media/goods/images/12_P_1448947547989.jpg -------------------------------------------------------------------------------- /MxShop/media/goods/images/13_P_1448947460386.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/media/goods/images/13_P_1448947460386.jpg -------------------------------------------------------------------------------- /MxShop/media/goods/images/14_P_1448947354031.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/media/goods/images/14_P_1448947354031.jpg -------------------------------------------------------------------------------- /MxShop/media/goods/images/15_P_1448947257324.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/media/goods/images/15_P_1448947257324.jpg -------------------------------------------------------------------------------- /MxShop/media/goods/images/16_P_1448947194687.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/media/goods/images/16_P_1448947194687.jpg -------------------------------------------------------------------------------- /MxShop/media/goods/images/17_P_1448947102246.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/media/goods/images/17_P_1448947102246.jpg -------------------------------------------------------------------------------- /MxShop/media/goods/images/18_P_1448947011435.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/media/goods/images/18_P_1448947011435.jpg -------------------------------------------------------------------------------- /MxShop/media/goods/images/19_P_1448946951581.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/media/goods/images/19_P_1448946951581.jpg -------------------------------------------------------------------------------- /MxShop/media/goods/images/1_P_1449024889889.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/media/goods/images/1_P_1449024889889.jpg -------------------------------------------------------------------------------- /MxShop/media/goods/images/20_P_1448946850602.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/media/goods/images/20_P_1448946850602.jpg -------------------------------------------------------------------------------- /MxShop/media/goods/images/21_P_1448946793276.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/media/goods/images/21_P_1448946793276.jpg -------------------------------------------------------------------------------- /MxShop/media/goods/images/22_P_1448946729629.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/media/goods/images/22_P_1448946729629.jpg -------------------------------------------------------------------------------- /MxShop/media/goods/images/23_P_1448948070348.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/media/goods/images/23_P_1448948070348.jpg -------------------------------------------------------------------------------- /MxShop/media/goods/images/24_P_1448948023823.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/media/goods/images/24_P_1448948023823.jpg -------------------------------------------------------------------------------- /MxShop/media/goods/images/25_P_1448947875346.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/media/goods/images/25_P_1448947875346.jpg -------------------------------------------------------------------------------- /MxShop/media/goods/images/26_P_1448947825754.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/media/goods/images/26_P_1448947825754.jpg -------------------------------------------------------------------------------- /MxShop/media/goods/images/27_P_1448947771805.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/media/goods/images/27_P_1448947771805.jpg -------------------------------------------------------------------------------- /MxShop/media/goods/images/28_P_1448947699948.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/media/goods/images/28_P_1448947699948.jpg -------------------------------------------------------------------------------- /MxShop/media/goods/images/29_P_1448947631994.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/media/goods/images/29_P_1448947631994.jpg -------------------------------------------------------------------------------- /MxShop/media/goods/images/2_20170719161405_249.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/media/goods/images/2_20170719161405_249.jpg -------------------------------------------------------------------------------- /MxShop/media/goods/images/2_20170719161414_628.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/media/goods/images/2_20170719161414_628.jpg -------------------------------------------------------------------------------- /MxShop/media/goods/images/2_20170719161435_381.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/media/goods/images/2_20170719161435_381.jpg -------------------------------------------------------------------------------- /MxShop/media/goods/images/2_P_1448945810202.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/media/goods/images/2_P_1448945810202.jpg -------------------------------------------------------------------------------- /MxShop/media/goods/images/30_P_1448948663450.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/media/goods/images/30_P_1448948663450.jpg -------------------------------------------------------------------------------- /MxShop/media/goods/images/31_P_1448948598947.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/media/goods/images/31_P_1448948598947.jpg -------------------------------------------------------------------------------- /MxShop/media/goods/images/32_P_1448948525620.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/media/goods/images/32_P_1448948525620.jpg -------------------------------------------------------------------------------- /MxShop/media/goods/images/33_P_1448948479966.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/media/goods/images/33_P_1448948479966.jpg -------------------------------------------------------------------------------- /MxShop/media/goods/images/34_P_1448948399009.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/media/goods/images/34_P_1448948399009.jpg -------------------------------------------------------------------------------- /MxShop/media/goods/images/35_P_1448948333610.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/media/goods/images/35_P_1448948333610.jpg -------------------------------------------------------------------------------- /MxShop/media/goods/images/36_P_1448948234405.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/media/goods/images/36_P_1448948234405.jpg -------------------------------------------------------------------------------- /MxShop/media/goods/images/37_P_1448949284365.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/media/goods/images/37_P_1448949284365.jpg -------------------------------------------------------------------------------- /MxShop/media/goods/images/38_P_1448949220255.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/media/goods/images/38_P_1448949220255.jpg -------------------------------------------------------------------------------- /MxShop/media/goods/images/39_P_1448949115481.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/media/goods/images/39_P_1448949115481.jpg -------------------------------------------------------------------------------- /MxShop/media/goods/images/3_P_1448945490837.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/media/goods/images/3_P_1448945490837.jpg -------------------------------------------------------------------------------- /MxShop/media/goods/images/40_P_1448949038702.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/media/goods/images/40_P_1448949038702.jpg -------------------------------------------------------------------------------- /MxShop/media/goods/images/41_P_1448948980358.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/media/goods/images/41_P_1448948980358.jpg -------------------------------------------------------------------------------- /MxShop/media/goods/images/42_P_1448948895193.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/media/goods/images/42_P_1448948895193.jpg -------------------------------------------------------------------------------- /MxShop/media/goods/images/43_P_1448948762645.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/media/goods/images/43_P_1448948762645.jpg -------------------------------------------------------------------------------- /MxShop/media/goods/images/44_P_1448948850187.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/media/goods/images/44_P_1448948850187.jpg -------------------------------------------------------------------------------- /MxShop/media/goods/images/45_P_1448946661303.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/media/goods/images/45_P_1448946661303.jpg -------------------------------------------------------------------------------- /MxShop/media/goods/images/46_P_1448946598711.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/media/goods/images/46_P_1448946598711.jpg -------------------------------------------------------------------------------- /MxShop/media/goods/images/47_P_1448946213263.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/media/goods/images/47_P_1448946213263.jpg -------------------------------------------------------------------------------- /MxShop/media/goods/images/48_P_1448943988970.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/media/goods/images/48_P_1448943988970.jpg -------------------------------------------------------------------------------- /MxShop/media/goods/images/49_P_1448162819889.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/media/goods/images/49_P_1448162819889.jpg -------------------------------------------------------------------------------- /MxShop/media/goods/images/4_P_1448945381985.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/media/goods/images/4_P_1448945381985.jpg -------------------------------------------------------------------------------- /MxShop/media/goods/images/50_P_1448946543091.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/media/goods/images/50_P_1448946543091.jpg -------------------------------------------------------------------------------- /MxShop/media/goods/images/51_P_1448946466595.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/media/goods/images/51_P_1448946466595.jpg -------------------------------------------------------------------------------- /MxShop/media/goods/images/53_P_1495068879687.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/media/goods/images/53_P_1495068879687.jpg -------------------------------------------------------------------------------- /MxShop/media/goods/images/5_P_1448945270390.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/media/goods/images/5_P_1448945270390.jpg -------------------------------------------------------------------------------- /MxShop/media/goods/images/6_P_1448945167279.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/media/goods/images/6_P_1448945167279.jpg -------------------------------------------------------------------------------- /MxShop/media/goods/images/7_P_1448945104883.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/media/goods/images/7_P_1448945104883.jpg -------------------------------------------------------------------------------- /MxShop/media/goods/images/8_P_1448945032810.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/media/goods/images/8_P_1448945032810.jpg -------------------------------------------------------------------------------- /MxShop/media/goods/images/9_P_1448944791617.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/media/goods/images/9_P_1448944791617.jpg -------------------------------------------------------------------------------- /MxShop/media/goods/images/生鲜_20170719161424_153.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/media/goods/images/生鲜_20170719161424_153.jpg -------------------------------------------------------------------------------- /MxShop/media/user_operation/files/QQ图片20170710190151.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/media/user_operation/files/QQ图片20170710190151.jpg -------------------------------------------------------------------------------- /MxShop/media/user_operation/files/QQ图片20170801222015.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/media/user_operation/files/QQ图片20170801222015.jpg -------------------------------------------------------------------------------- /MxShop/static/fonts/iconfont.60cf513.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/static/fonts/iconfont.60cf513.ttf -------------------------------------------------------------------------------- /MxShop/static/fonts/iconfont.fcaaa27.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/static/fonts/iconfont.fcaaa27.eot -------------------------------------------------------------------------------- /MxShop/static/images/loginBg1.23c7104.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennonChin/Django-Practices/e549272c039ed19c945d0164fee16d335a011722/MxShop/static/images/loginBg1.23c7104.jpg -------------------------------------------------------------------------------- /MxShop/templates/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 首页 6 | 7 | 8 |
9 | 10 | 11 | --------------------------------------------------------------------------------