├── .gitignore ├── .travis.yml ├── AUTHORS.rst ├── CONTRIBUTING.rst ├── HISTORY.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── admin_reorder ├── __init__.py ├── middleware.py ├── models.py ├── static │ ├── css │ │ └── admin-reorder.css │ ├── img │ │ └── .gitignore │ └── js │ │ └── admin-reorder.js └── templates │ └── admin-reorder │ └── base.html ├── docs ├── Makefile ├── authors.rst ├── conf.py ├── contributing.rst ├── history.rst ├── index.rst ├── installation.rst ├── make.bat ├── readme.rst └── usage.rst ├── requirements-test.txt ├── requirements.txt ├── runtests.py ├── setup.cfg ├── setup.py ├── tests ├── __init__.py └── test_models.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishbahr/django-modeladmin-reorder/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishbahr/django-modeladmin-reorder/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishbahr/django-modeladmin-reorder/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishbahr/django-modeladmin-reorder/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /HISTORY.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishbahr/django-modeladmin-reorder/HEAD/HISTORY.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishbahr/django-modeladmin-reorder/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishbahr/django-modeladmin-reorder/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishbahr/django-modeladmin-reorder/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishbahr/django-modeladmin-reorder/HEAD/README.rst -------------------------------------------------------------------------------- /admin_reorder/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '0.3.1' 2 | -------------------------------------------------------------------------------- /admin_reorder/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishbahr/django-modeladmin-reorder/HEAD/admin_reorder/middleware.py -------------------------------------------------------------------------------- /admin_reorder/models.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /admin_reorder/static/css/admin-reorder.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /admin_reorder/static/img/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /admin_reorder/static/js/admin-reorder.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /admin_reorder/templates/admin-reorder/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishbahr/django-modeladmin-reorder/HEAD/admin_reorder/templates/admin-reorder/base.html -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishbahr/django-modeladmin-reorder/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/authors.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../AUTHORS.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishbahr/django-modeladmin-reorder/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../CONTRIBUTING.rst -------------------------------------------------------------------------------- /docs/history.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../HISTORY.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishbahr/django-modeladmin-reorder/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishbahr/django-modeladmin-reorder/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishbahr/django-modeladmin-reorder/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/readme.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../README.rst -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishbahr/django-modeladmin-reorder/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /requirements-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishbahr/django-modeladmin-reorder/HEAD/requirements-test.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | -e . 2 | 3 | wheel==0.24.0 4 | -------------------------------------------------------------------------------- /runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishbahr/django-modeladmin-reorder/HEAD/runtests.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [wheel] 2 | universal = 1 -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishbahr/django-modeladmin-reorder/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishbahr/django-modeladmin-reorder/HEAD/tests/test_models.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishbahr/django-modeladmin-reorder/HEAD/tox.ini --------------------------------------------------------------------------------