在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → Django后台输入框联想、自定义页面、搜索框等

Django后台输入框联想、自定义页面、搜索框等

一般编程问题

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

实例介绍

【实例简介】
实现Django后台页面自定义、搜索功能(基于日期单搜索和日期项目名称多选项搜索)、数据显示(BootstrapTable翻页)、权限(控制表),同时优化输入框联想功能,希望对你有用。
【实例截图】
【核心代码】
MyXadminTemplates
└── MyXadminTemplates
├── db.sqlite3
├── demo
│   ├── admin.py
│   ├── apps.py
│   ├── config.py
│   ├── __init__.py
│   ├── migrations
│   │   ├── __init__.py
│   │   └── __pycache__
│   │   └── __init__.cpython-36.pyc
│   ├── models.py
│   ├── __pycache__
│   │   ├── admin.cpython-36.pyc
│   │   ├── config.cpython-36.pyc
│   │   ├── __init__.cpython-36.pyc
│   │   ├── models.cpython-36.pyc
│   │   └── views.cpython-36.pyc
│   ├── tests.py
│   └── views.py
├── extra_apps
│   ├── __init__.py
│   ├── plug_ins
│   │   ├── admin.py
│   │   ├── adminx.py
│   │   ├── apps.py
│   │   ├── authority.py
│   │   ├── db_config.py
│   │   ├── __init__.py
│   │   ├── migrations
│   │   │   ├── 0001_initial.py
│   │   │   ├── __init__.py
│   │   │   └── __pycache__
│   │   │   ├── 0001_initial.cpython-36.pyc
│   │   │   └── __init__.cpython-36.pyc
│   │   ├── models.py
│   │   ├── plug.py
│   │   ├── __pycache__
│   │   │   ├── admin.cpython-36.pyc
│   │   │   ├── adminx.cpython-36.pyc
│   │   │   ├── apps.cpython-36.pyc
│   │   │   ├── authority.cpython-36.pyc
│   │   │   ├── db_config.cpython-36.pyc
│   │   │   ├── __init__.cpython-36.pyc
│   │   │   ├── models.cpython-36.pyc
│   │   │   ├── plug.cpython-36.pyc
│   │   │   ├── urls.cpython-36.pyc
│   │   │   └── views.cpython-36.pyc
│   │   ├── tests.py
│   │   ├── urls.py
│   │   └── views.py
│   ├── __pycache__
│   │   └── __init__.cpython-36.pyc
│   └── xadmin
│   ├── adminx.py
│   ├── apps.py
│   ├── filters.py
│   ├── forms.py
│   ├── __init__.py
│   ├── layout.py
│   ├── locale
│   │   ├── de_DE
│   │   │   └── LC_MESSAGES
│   │   │   ├── djangojs.mo
│   │   │   ├── djangojs.po
│   │   │   ├── django.mo
│   │   │   └── django.po
│   │   ├── en
│   │   │   └── LC_MESSAGES
│   │   │   ├── djangojs.mo
│   │   │   ├── djangojs.po
│   │   │   ├── django.mo
│   │   │   └── django.po
│   │   ├── es_MX
│   │   │   └── LC_MESSAGES
│   │   │   ├── djangojs.mo
│   │   │   ├── djangojs.po
│   │   │   ├── django.mo
│   │   │   └── django.po
│   │   ├── eu
│   │   │   └── LC_MESSAGES
│   │   │   ├── djangojs.mo
│   │   │   ├── djangojs.po
│   │   │   ├── django.mo
│   │   │   └── django.po
│   │   ├── id_ID
│   │   │   └── LC_MESSAGES
│   │   │   ├── djangojs.mo
│   │   │   ├── djangojs.po
│   │   │   ├── django.mo
│   │   │   └── django.po
│   │   ├── ja
│   │   │   └── LC_MESSAGES
│   │   │   ├── djangojs.mo
│   │   │   ├── djangojs.po
│   │   │   ├── django.mo
│   │   │   └── django.po
│   │   ├── lt
│   │   │   └── LC_MESSAGES
│   │   │   ├── djangojs.mo
│   │   │   ├── djangojs.po
│   │   │   ├── django.mo
│   │   │   └── django.po
│   │   ├── nl_NL
│   │   │   └── LC_MESSAGES
│   │   │   ├── djangojs.mo
│   │   │   ├── djangojs.po
│   │   │   ├── django.mo
│   │   │   └── django.po
│   │   ├── pl
│   │   │   └── LC_MESSAGES
│   │   │   ├── djangojs.mo
│   │   │   ├── djangojs.po
│   │   │   ├── django.mo
│   │   │   └── django.po
│   │   ├── pt_BR
│   │   │   └── LC_MESSAGES
│   │   │   ├── djangojs.mo
│   │   │   ├── djangojs.po
│   │   │   ├── django.mo
│   │   │   └── django.po
│   │   ├── ru_RU
│   │   │   └── LC_MESSAGES
│   │   │   ├── djangojs.mo
│   │   │   ├── djangojs.po
│   │   │   ├── django.mo
│   │   │   └── django.po
│   │   └── zh_Hans
│   │   └── LC_MESSAGES
│   │   ├── djangojs.mo
│   │   ├── djangojs.po
│   │   ├── django.mo
│   │   └── django.po
│   ├── migrations
│   │   ├── 0001_initial.py
│   │   ├── 0002_log.py
│   │   ├── 0003_auto_20160715_0100.py
│   │   ├── __init__.py
│   │   └── __pycache__
│   │   ├── 0001_initial.cpython-36.pyc
│   │   ├── 0002_log.cpython-36.pyc
│   │   ├── 0003_auto_20160715_0100.cpython-36.pyc
│   │   └── __init__.cpython-36.pyc
│   ├── models.py
│   ├── plugins
│   │   ├── actions.py
│   │   ├── aggregation.py
│   │   ├── ajax.py
│   │   ├── auth.py
│   │   ├── batch.py
│   │   ├── bookmark.py
│   │   ├── chart.py
│   │   ├── comments.py
│   │   ├── details.py
│   │   ├── editable.py
│   │   ├── export.py
│   │   ├── filters.py
│   │   ├── images.py
│   │   ├── importexport.py
│   │   ├── __init__.py
│   │   ├── inline.py
│   │   ├── language.py
│   │   ├── layout.py
│   │   ├── mobile.py
│   │   ├── multiselect.py
│   │   ├── passwords.py
│   │   ├── portal.py
│   │   ├── __pycache__
│   │   │   ├── actions.cpython-36.pyc
│   │   │   ├── aggregation.cpython-36.pyc
│   │   │   ├── ajax.cpython-36.pyc
│   │   │   ├── auth.cpython-36.pyc
│   │   │   ├── bookmark.cpython-36.pyc
│   │   │   ├── chart.cpython-36.pyc
│   │   │   ├── details.cpython-36.pyc
│   │   │   ├── editable.cpython-36.pyc
│   │   │   ├── export.cpython-36.pyc
│   │   │   ├── filters.cpython-36.pyc
│   │   │   ├── images.cpython-36.pyc
│   │   │   ├── importexport.cpython-36.pyc
│   │   │   ├── __init__.cpython-36.pyc
│   │   │   ├── inline.cpython-36.pyc
│   │   │   ├── language.cpython-36.pyc
│   │   │   ├── layout.cpython-36.pyc
│   │   │   ├── mobile.cpython-36.pyc
│   │   │   ├── multiselect.cpython-36.pyc
│   │   │   ├── passwords.cpython-36.pyc
│   │   │   ├── portal.cpython-36.pyc
│   │   │   ├── quickfilter.cpython-36.pyc
│   │   │   ├── quickform.cpython-36.pyc
│   │   │   ├── refresh.cpython-36.pyc
│   │   │   ├── relate.cpython-36.pyc
│   │   │   ├── relfield.cpython-36.pyc
│   │   │   ├── sitemenu.cpython-36.pyc
│   │   │   ├── sortablelist.cpython-36.pyc
│   │   │   ├── themes.cpython-36.pyc
│   │   │   ├── topnav.cpython-36.pyc
│   │   │   ├── utils.cpython-36.pyc
│   │   │   └── wizard.cpython-36.pyc
│   │   ├── quickfilter.py
│   │   ├── quickform.py
│   │   ├── refresh.py
│   │   ├── relate.py
│   │   ├── relfield.py
│   │   ├── sitemenu.py
│   │   ├── sortablelist.py
│   │   ├── themes.py
│   │   ├── topnav.py
│   │   ├── utils.py
│   │   ├── wizard.py
│   │   └── xversion.py
│   ├── __pycache__
│   │   ├── adminx.cpython-36.pyc
│   │   ├── apps.cpython-36.pyc
│   │   ├── filters.cpython-36.pyc
│   │   ├── forms.cpython-36.pyc
│   │   ├── __init__.cpython-36.pyc
│   │   ├── layout.cpython-36.pyc
│   │   ├── models.cpython-36.pyc
│   │   ├── sites.cpython-36.pyc
│   │   ├── util.cpython-36.pyc
│   │   ├── vendors.cpython-36.pyc
│   │   └── widgets.cpython-36.pyc
│   ├── sites.py
│   ├── static
│   │   └── xadmin
│   │   ├── component.json
│   │   ├── css
│   │   │   ├── themes
│   │   │   │   ├── bootstrap-theme.css
│   │   │   │   ├── bootstrap-theme.min.css
│   │   │   │   └── bootstrap-xadmin.css
│   │   │   ├── xadmin.form.css
│   │   │   ├── xadmin.main.css
│   │   │   ├── xadmin.mobile.css
│   │   │   ├── xadmin.page.dashboard.css
│   │   │   ├── xadmin.plugin.aggregation.css
│   │   │   ├── xadmin.plugin.formset.css
│   │   │   ├── xadmin.plugin.importexport.css
│   │   │   ├── xadmin.plugin.quickfilter.css
│   │   │   ├── xadmin.plugins.css
│   │   │   ├── xadmin.responsive.css
│   │   │   ├── xadmin.widget.editable.css
│   │   │   └── xadmin.widget.select-transfer.css
│   │   ├── js
│   │   │   ├── xadmin.main.js
│   │   │   ├── xadmin.page.dashboard.js
│   │   │   ├── xadmin.page.form.js
│   │   │   ├── xadmin.page.list.js
│   │   │   ├── xadmin.plugin.actions.js
│   │   │   ├── xadmin.plugin.batch.js
│   │   │   ├── xadmin.plugin.bookmark.js
│   │   │   ├── xadmin.plugin.charts.js
│   │   │   ├── xadmin.plugin.details.js
│   │   │   ├── xadmin.plugin.editable.js
│   │   │   ├── xadmin.plugin.filters.js
│   │   │   ├── xadmin.plugin.formset.js
│   │   │   ├── xadmin.plugin.importexport.js
│   │   │   ├── xadmin.plugin.portal.js
│   │   │   ├── xadmin.plugin.quickfilter.js
│   │   │   ├── xadmin.plugin.quick-form.js
│   │   │   ├── xadmin.plugin.refresh.js
│   │   │   ├── xadmin.plugin.revision.js
│   │   │   ├── xadmin.plugin.sortablelist.js
│   │   │   ├── xadmin.plugin.themes.js
│   │   │   ├── xadmin.responsive.js
│   │   │   ├── xadmin.widget.datetime.js
│   │   │   ├── xadmin.widget.multiselect.js
│   │   │   ├── xadmin.widget.select.js
│   │   │   └── xadmin.widget.select-transfer.js
│   │   └── vendor
│   │   ├── autotype
│   │   │   └── index.js
│   │   ├── bootstrap
│   │   │   ├── css
│   │   │   │   ├── bootstrap.css
│   │   │   │   └── bootstrap.min.css
│   │   │   ├── fonts
│   │   │   │   ├── glyphicons-halflings-regular.eot
│   │   │   │   ├── glyphicons-halflings-regular.svg
│   │   │   │   ├── glyphicons-halflings-regular.ttf
│   │   │   │   └── glyphicons-halflings-regular.woff
│   │   │   └── js
│   │   │   ├── bootstrap.js
│   │   │   └── bootstrap.min.js
│   │   ├── bootstrap-clockpicker
│   │   │   ├── bootstrap-clockpicker.css
│   │   │   ├── bootstrap-clockpicker.js
│   │   │   ├── bootstrap-clockpicker.min.css
│   │   │   └── bootstrap-clockpicker.min.js
│   │   ├── bootstrap-datepicker
│   │   │   ├── css
│   │   │   │   └── datepicker.css
│   │   │   └── js
│   │   │   ├── bootstrap-datepicker.js
│   │   │   └── locales
│   │   │   ├── bootstrap-datepicker.bg.js
│   │   │   ├── bootstrap-datepicker.ca.js
│   │   │   ├── bootstrap-datepicker.cs.js
│   │   │   ├── bootstrap-datepicker.da.js
│   │   │   ├── bootstrap-datepicker.de.js
│   │   │   ├── bootstrap-datepicker.el.js
│   │   │   ├── bootstrap-datepicker.es.js
│   │   │   ├── bootstrap-datepicker.fi.js
│   │   │   ├── bootstrap-datepicker.fr.js
│   │   │   ├── bootstrap-datepicker.he.js
│   │   │   ├── bootstrap-datepicker.hr.js
│   │   │   ├── bootstrap-datepicker.hu.js
│   │   │   ├── bootstrap-datepicker.id.js
│   │   │   ├── bootstrap-datepicker.is.js
│   │   │   ├── bootstrap-datepicker.it.js
│   │   │   ├── bootstrap-datepicker.ja.js
│   │   │   ├── bootstrap-datepicker.kr.js
│   │   │   ├── bootstrap-datepicker.lt.js
│   │   │   ├── bootstrap-datepicker.lv.js
│   │   │   ├── bootstrap-datepicker.ms.js
│   │   │   ├── bootstrap-datepicker.nb.js
│   │   │   ├── bootstrap-datepicker.nl.js
│   │   │   ├── bootstrap-datepicker.pl.js
│   │   │   ├── bootstrap-datepicker.pt-BR.js
│   │   │   ├── bootstrap-datepicker.pt.js
│   │   │   ├── bootstrap-datepicker.ro.js
│   │   │   ├── bootstrap-datepicker.rs.js
│   │   │   ├── bootstrap-datepicker.rs-latin.js
│   │   │   ├── bootstrap-datepicker.ru.js
│   │   │   ├── bootstrap-datepicker.sk.js
│   │   │   ├── bootstrap-datepicker.sl.js
│   │   │   ├── bootstrap-datepicker.sv.js
│   │   │   ├── bootstrap-datepicker.sw.js
│   │   │   ├── bootstrap-datepicker.th.js
│   │   │   ├── bootstrap-datepicker.tr.js
│   │   │   ├── bootstrap-datepicker.uk.js
│   │   │   ├── bootstrap-datepicker.zh-CN.js
│   │   │   └── bootstrap-datepicker.zh-TW.js
│   │   ├── bootstrap-image-gallery
│   │   │   ├── css
│   │   │   │   ├── bootstrap-image-gallery.css
│   │   │   │   └── bootstrap-image-gallery.min.css
│   │   │   ├── img
│   │   │   │   └── loading.gif
│   │   │   └── js
│   │   │   ├── bootstrap-image-gallery.js
│   │   │   └── bootstrap-image-gallery.min.js
│   │   ├── bootstrap-modal
│   │   │   ├── css
│   │   │   │   └── bootstrap-modal.css
│   │   │   ├── img
│   │   │   │   └── ajax-loader.gif
│   │   │   └── js
│   │   │   ├── bootstrap-modal.js
│   │   │   └── bootstrap-modalmanager.js
│   │   ├── bootstrap-multiselect
│   │   │   ├── css
│   │   │   │   └── bootstrap-multiselect.css
│   │   │   └── js
│   │   │   └── bootstrap-multiselect.js
│   │   ├── bootstrap-timepicker
│   │   │   ├── css
│   │   │   │   ├── bootstrap-timepicker.css
│   │   │   │   └── bootstrap-timepicker.min.css
│   │   │   └── js
│   │   │   ├── bootstrap-timepicker.js
│   │   │   └── bootstrap-timepicker.min.js
│   │   ├── flot
│   │   │   ├── excanvas.js
│   │   │   ├── excanvas.min.js
│   │   │   ├── jquery.colorhelpers.js
│   │   │   ├── jquery.flot.aggregate.js
│   │   │   ├── jquery.flot.canvas.js
│   │   │   ├── jquery.flot.categories.js
│   │   │   ├── jquery.flot.crosshair.js
│   │   │   ├── jquery.flot.errorbars.js
│   │   │   ├── jquery.flot.fillbetween.js
│   │   │   ├── jquery.flot.image.js
│   │   │   ├── jquery.flot.js
│   │   │   ├── jquery.flot.navigate.js
│   │   │   ├── jquery.flot.pie.js
│   │   │   ├── jquery.flot.resize.js
│   │   │   ├── jquery.flot.selection.js
│   │   │   ├── jquery.flot.stack.js
│   │   │   ├── jquery.flot.symbol.js
│   │   │   ├── jquery.flot.threshold.js
│   │   │   └── jquery.flot.time.js
│   │   ├── font-awesome
│   │   │   ├── css
│   │   │   │   ├── font-awesome.css
│   │   │   │   └── font-awesome.min.css
│   │   │   └── fonts
│   │   │   ├── FontAwesome.otf
│   │   │   ├── fontawesome-webfont.eot
│   │   │   ├── fontawesome-webfont.svg
│   │   │   ├── fontawesome-webfont.ttf
│   │   │   └── fontawesome-webfont.woff
│   │   ├── jquery
│   │   │   ├── jquery.js
│   │   │   └── jquery.min.js
│   │   ├── jquery-ui
│   │   │   ├── jquery.ui.core.js
│   │   │   ├── jquery.ui.core.min.js
│   │   │   ├── jquery.ui.effect.js
│   │   │   ├── jquery.ui.effect.min.js
│   │   │   ├── jquery.ui.mouse.js
│   │   │   ├── jquery.ui.mouse.min.js
│   │   │   ├── jquery.ui.sortable.js
│   │   │   ├── jquery.ui.sortable.min.js
│   │   │   ├── jquery.ui.widget.js
│   │   │   └── jquery.ui.widget.min.js
│   │   ├── load-image
│   │   │   ├── load-image.js
│   │   │   └── load-image.min.js
│   │   ├── select2
│   │   │   ├── select2.css
│   │   │   ├── select2.js
│   │   │   ├── select2_locale_de.js
│   │   │   ├── select2_locale_en.js
│   │   │   ├── select2_locale_es.js
│   │   │   ├── select2_locale_eu.js
│   │   │   ├── select2_locale_fr.js
│   │   │   ├── select2_locale_hr.js
│   │   │   ├── select2_locale_hu.js
│   │   │   ├── select2_locale_it.js
│   │   │   ├── select2_locale_nl.js
│   │   │   ├── select2_locale_pt-BR.js
│   │   │   ├── select2_locale_pt-PT.js
│   │   │   ├── select2_locale_ro.js
│   │   │   ├── select2_locale_ru.js
│   │   │   ├── select2_locale_sk.js
│   │   │   ├── select2_locale_sv.js
│   │   │   ├── select2_locale_tr.js
│   │   │   ├── select2_locale_ua.js
│   │   │   ├── select2_locale_zh-CN.js
│   │   │   ├── select2_locale_zh-hans.js
│   │   │   ├── select2.min.js
│   │   │   ├── select2.png
│   │   │   ├── select2-spinner.gif
│   │   │   └── select2x2.png
│   │   ├── selectize
│   │   │   ├── selectize.bootstrap2.css
│   │   │   ├── selectize.bootstrap3.css
│   │   │   ├── selectize.css
│   │   │   ├── selectize.default.css
│   │   │   ├── selectize.js
│   │   │   ├── selectize.legacy.css
│   │   │   └── selectize.min.js
│   │   └── snapjs
│   │   ├── snap.css
│   │   ├── snap.js
│   │   └── snap.min.js
│   ├── templates
│   │   └── xadmin
│   │   ├── 404.html
│   │   ├── 500.html
│   │   ├── auth
│   │   │   ├── password_reset
│   │   │   │   ├── complete.html
│   │   │   │   ├── confirm.html
│   │   │   │   ├── done.html
│   │   │   │   ├── email.html
│   │   │   │   └── form.html
│   │   │   └── user
│   │   │   ├── add_form.html
│   │   │   └── change_password.html
│   │   ├── base.html
│   │   ├── base_site.html
│   │   ├── blocks
│   │   │   ├── comm.top.setlang.html
│   │   │   ├── comm.top.theme.html
│   │   │   ├── comm.top.topnav.html
│   │   │   ├── modal_list.left_navbar.quickfilter.html
│   │   │   ├── model_form.before_fieldsets.wizard.html
│   │   │   ├── model_form.submit_line.wizard.html
│   │   │   ├── model_list.nav_form.search_form.html
│   │   │   ├── model_list.nav_menu.bookmarks.html
│   │   │   ├── model_list.nav_menu.filters.html
│   │   │   ├── model_list.results_bottom.actions.html
│   │   │   ├── model_list.results_top.charts.html
│   │   │   ├── model_list.results_top.date_hierarchy.html
│   │   │   ├── model_list.top_toolbar.exports.html
│   │   │   ├── model_list.top_toolbar.importexport.export.html
│   │   │   ├── model_list.top_toolbar.importexport.import.html
│   │   │   ├── model_list.top_toolbar.layouts.html
│   │   │   ├── model_list.top_toolbar.refresh.html
│   │   │   └── model_list.top_toolbar.saveorder.html
│   │   ├── edit_inline
│   │   │   ├── accordion.html
│   │   │   ├── base.html
│   │   │   ├── blank.html
│   │   │   ├── one.html
│   │   │   ├── stacked.html
│   │   │   ├── tab.html
│   │   │   └── tabular.html
│   │   ├── filters
│   │   │   ├── char.html
│   │   │   ├── checklist.html
│   │   │   ├── date.html
│   │   │   ├── fk_search.html
│   │   │   ├── list.html
│   │   │   ├── number.html
│   │   │   ├── quickfilter.html
│   │   │   └── rel.html
│   │   ├── forms
│   │   │   └── transfer.html
│   │   ├── grids
│   │   │   └── thumbnails.html
│   │   ├── import_export
│   │   │   ├── export_action.html
│   │   │   └── import.html
│   │   ├── includes
│   │   │   ├── box.html
│   │   │   ├── pagination.html
│   │   │   ├── sitemenu_accordion.html
│   │   │   ├── sitemenu_default.html
│   │   │   ├── submit_line.html
│   │   │   ├── toggle_back.html
│   │   │   └── toggle_menu.html
│   │   ├── layout
│   │   │   ├── fieldset.html
│   │   │   ├── field_value.html
│   │   │   ├── field_value_td.html
│   │   │   ├── input_group.html
│   │   │   └── td-field.html
│   │   ├── views
│   │   │   ├── app_index.html
│   │   │   ├── batch_change_form.html
│   │   │   ├── dashboard.html
│   │   │   ├── form.html
│   │   │   ├── invalid_setup.html
│   │   │   ├── logged_out.html
│   │   │   ├── login.html
│   │   │   ├── model_dashboard.html
│   │   │   ├── model_delete_confirm.html
│   │   │   ├── model_delete_selected_confirm.html
│   │   │   ├── model_detail.html
│   │   │   ├── model_form.html
│   │   │   ├── model_history.html
│   │   │   ├── model_list.html
│   │   │   ├── quick_detail.html
│   │   │   ├── quick_form.html
│   │   │   ├── recover_form.html
│   │   │   ├── recover_list.html
│   │   │   ├── revision_diff.html
│   │   │   └── revision_form.html
│   │   └── widgets
│   │   ├── addform.html
│   │   ├── base.html
│   │   ├── chart.html
│   │   ├── list.html
│   │   └── qbutton.html
│   ├── templatetags
│   │   ├── __init__.py
│   │   ├── __pycache__
│   │   │   ├── __init__.cpython-36.pyc
│   │   │   └── xadmin_tags.cpython-36.pyc
│   │   └── xadmin_tags.py
│   ├── util.py
│   ├── vendors.py
│   ├── views
│   │   ├── base.py
│   │   ├── dashboard.py
│   │   ├── delete.py
│   │   ├── detail.py
│   │   ├── edit.py
│   │   ├── form.py
│   │   ├── __init__.py
│   │   ├── list.py
│   │   ├── __pycache__
│   │   │   ├── base.cpython-36.pyc
│   │   │   ├── dashboard.cpython-36.pyc
│   │   │   ├── delete.cpython-36.pyc
│   │   │   ├── detail.cpython-36.pyc
│   │   │   ├── edit.cpython-36.pyc
│   │   │   ├── form.cpython-36.pyc
│   │   │   ├── __init__.cpython-36.pyc
│   │   │   ├── list.cpython-36.pyc
│   │   │   └── website.cpython-36.pyc
│   │   └── website.py
│   └── widgets.py
├── manage.py
├── MyXadminTemplates
│   ├── __init__.py
│   ├── __pycache__
│   │   ├── __init__.cpython-36.pyc
│   │   ├── settings.cpython-36.pyc
│   │   ├── urls.cpython-36.pyc
│   │   └── wsgi.cpython-36.pyc
│   ├── settings.py
│   ├── urls.py
│   └── wsgi.py
├── README.md
├── statics
│   ├── css
│   │   ├── bootstrap.min.css
│   │   └── bootstrap-table-filter-control.css
│   ├── js
│   │   ├── bootstrap.min.js
│   │   ├── bootstrap-table-filter-control.js
│   │   └── jquery.min.js
│   ├── plug_ins
│   │   ├── css
│   │   │   ├── bootstrap-datetimepicker.min.css
│   │   │   ├── bootstrap.min.css
│   │   │   ├── bootstrap-table.css
│   │   │   ├── bootstrap-table-filter-control.css
│   │   │   ├── bootstrap-table-sticky-header.css
│   │   │   ├── dashboard.css
│   │   │   └── tableexport.min.css
│   │   ├── fonts
│   │   │   ├── glyphicons-halflings-regular.eot
│   │   │   ├── glyphicons-halflings-regular.svg
│   │   │   ├── glyphicons-halflings-regular.ttf
│   │   │   ├── glyphicons-halflings-regular.woff
│   │   │   └── glyphicons-halflings-regular.woff2
│   │   └── js
│   │   ├── blob.js
│   │   ├── bootstrap-datetimepicker.js
│   │   ├── bootstrap-datetimepicker.min.js
│   │   ├── bootstrap-datetimepicker.zh-CN.js
│   │   ├── bootstrap.min.js
│   │   ├── bootstrap-table-export.js
│   │   ├── bootstrap-table-filter-control.js
│   │   ├── bootstrap-table.js
│   │   ├── bootstrap-table-key-events.min.js
│   │   ├── bootstrap-table-sticky-header.min.js
│   │   ├── bootstrap-table-zh-CN.js
│   │   ├── echarts.js
│   │   ├── FileSaver.min.js
│   │   ├── ga.js
│   │   ├── jquery-3.3.1.min.js
│   │   ├── npm.js
│   │   ├── tableExport.min.js
│   │   └── xlsx.core.min.js
│   └── total
│   ├── css
│   │   └── jquery-ui.css
│   ├── fonts
│   │   ├── glyphicons-halflings-regular.eot
│   │   ├── glyphicons-halflings-regular.svg
│   │   ├── glyphicons-halflings-regular.ttf
│   │   ├── glyphicons-halflings-regular.woff
│   │   └── glyphicons-halflings-regular.woff2
│   └── js
│   ├── jquery.js
│   └── jquery-ui.js
└── templates
├── index.html
└── plug_ins
├── menu1.html
├── menu2.html
├── menu3.html
└── my_xadmin_base.html

116 directories, 534 files

标签:

实例下载地址

Django后台输入框联想、自定义页面、搜索框等

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

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

网友评论

发表评论

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

查看所有0条评论>>

小贴士

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

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

关于好例子网

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

;
报警