├── .github └── workflows │ └── django.yml ├── InvMngSys ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-310.pyc │ ├── __init__.cpython-36.pyc │ ├── settings.cpython-310.pyc │ ├── settings.cpython-36.pyc │ ├── urls.cpython-310.pyc │ ├── urls.cpython-36.pyc │ ├── wsgi.cpython-310.pyc │ └── wsgi.cpython-36.pyc ├── settings.py ├── urls.py └── wsgi.py ├── Inventory ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-310.pyc │ ├── __init__.cpython-36.pyc │ ├── admin.cpython-310.pyc │ ├── admin.cpython-36.pyc │ ├── apps.cpython-310.pyc │ ├── apps.cpython-36.pyc │ ├── models.cpython-310.pyc │ ├── models.cpython-36.pyc │ ├── urls.cpython-310.pyc │ ├── urls.cpython-36.pyc │ ├── views.cpython-310.pyc │ └── views.cpython-36.pyc ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ ├── __init__.py │ └── __pycache__ │ │ ├── 0001_initial.cpython-310.pyc │ │ ├── 0001_initial.cpython-36.pyc │ │ ├── 0002_auto_20180809_1602.cpython-36.pyc │ │ ├── 0003_auto_20180809_1603.cpython-36.pyc │ │ ├── 0004_auto_20180809_1647.cpython-36.pyc │ │ ├── 0005_auto_20180809_1654.cpython-36.pyc │ │ ├── __init__.cpython-310.pyc │ │ └── __init__.cpython-36.pyc ├── models.py ├── static │ ├── DataTables │ │ ├── DataTables-1.10.18 │ │ │ ├── css │ │ │ │ ├── dataTables.bootstrap.css │ │ │ │ ├── dataTables.bootstrap.min.css │ │ │ │ ├── dataTables.bootstrap4.css │ │ │ │ ├── dataTables.bootstrap4.min.css │ │ │ │ ├── dataTables.foundation.css │ │ │ │ ├── dataTables.foundation.min.css │ │ │ │ ├── dataTables.jqueryui.css │ │ │ │ ├── dataTables.jqueryui.min.css │ │ │ │ ├── dataTables.semanticui.css │ │ │ │ ├── dataTables.semanticui.min.css │ │ │ │ ├── jquery.dataTables.css │ │ │ │ └── jquery.dataTables.min.css │ │ │ ├── images │ │ │ │ ├── sort_asc.png │ │ │ │ ├── sort_asc_disabled.png │ │ │ │ ├── sort_both.png │ │ │ │ ├── sort_desc.png │ │ │ │ └── sort_desc_disabled.png │ │ │ └── js │ │ │ │ ├── dataTables.bootstrap.js │ │ │ │ ├── dataTables.bootstrap.min.js │ │ │ │ ├── dataTables.bootstrap4.js │ │ │ │ ├── dataTables.bootstrap4.min.js │ │ │ │ ├── dataTables.foundation.js │ │ │ │ ├── dataTables.foundation.min.js │ │ │ │ ├── dataTables.jqueryui.js │ │ │ │ ├── dataTables.jqueryui.min.js │ │ │ │ ├── dataTables.semanticui.js │ │ │ │ ├── dataTables.semanticui.min.js │ │ │ │ ├── jquery.dataTables.js │ │ │ │ └── jquery.dataTables.min.js │ │ ├── datatables.css │ │ ├── datatables.js │ │ ├── datatables.min.css │ │ └── datatables.min.js │ ├── css │ │ ├── bootstrap-grid.css │ │ ├── bootstrap-grid.css.map │ │ ├── bootstrap-grid.min.css │ │ ├── bootstrap-grid.min.css.map │ │ ├── bootstrap-reboot.css │ │ ├── bootstrap-reboot.css.map │ │ ├── bootstrap-reboot.min.css │ │ ├── bootstrap-reboot.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ ├── jquery-3.3.1.min.js │ ├── js │ │ ├── bootstrap.bundle.js │ │ ├── bootstrap.bundle.js.map │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.min.js.map │ │ ├── bootstrap.js │ │ ├── bootstrap.js.map │ │ ├── bootstrap.min.js │ │ └── bootstrap.min.js.map │ └── logo2.ico ├── templates │ ├── base.html │ ├── details.html │ ├── index.html │ ├── logo2.ico │ ├── returnitm.html │ └── transferitm.html ├── tests.py ├── urls.py └── views.py ├── README.md ├── data.csv ├── data_extract.py ├── db.sqlite3 ├── django-master ├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .gitattributes ├── .gitignore ├── .hgignore ├── .tx │ └── config ├── AUTHORS ├── CONTRIBUTING.rst ├── Gruntfile.js ├── INSTALL ├── LICENSE ├── LICENSE.python ├── MANIFEST.in ├── README.rst ├── django │ ├── __init__.py │ ├── __main__.py │ ├── apps │ │ ├── __init__.py │ │ ├── config.py │ │ └── registry.py │ ├── bin │ │ └── django-admin.py │ ├── conf │ │ ├── __init__.py │ │ ├── app_template │ │ │ ├── __init__.py-tpl │ │ │ ├── admin.py-tpl │ │ │ ├── apps.py-tpl │ │ │ ├── migrations │ │ │ │ └── __init__.py-tpl │ │ │ ├── models.py-tpl │ │ │ ├── tests.py-tpl │ │ │ └── views.py-tpl │ │ ├── global_settings.py │ │ ├── locale │ │ │ ├── __init__.py │ │ │ ├── af │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── ar │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── ast │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── az │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── be │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── bg │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── bn │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── br │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── bs │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── ca │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── cs │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── cy │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── da │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── de │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── de_CH │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── dsb │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── el │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── en │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── en_AU │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── en_GB │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── eo │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── es │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── es_AR │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── es_CO │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── es_MX │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── es_NI │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── es_PR │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── es_VE │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── et │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── eu │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── fa │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── fi │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── fr │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── fy │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── ga │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── gd │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── gl │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── he │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── hi │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── hr │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── hsb │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── hu │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── ia │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── id │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── io │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── is │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── it │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── ja │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── ka │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── kab │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── kk │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── km │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── kn │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── ko │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── lb │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── lt │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── lv │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── mk │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── ml │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── mn │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── mr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── my │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── nb │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── ne │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── nl │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── nn │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── os │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── pa │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── pl │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── pt │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── pt_BR │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── ro │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── ru │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── sk │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── sl │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── sq │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── sr │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── sr_Latn │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── sv │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── sw │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── ta │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── te │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── th │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── tr │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── tt │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── udm │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── uk │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── ur │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── vi │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── zh_Hans │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ └── zh_Hant │ │ │ │ ├── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ ├── project_template │ │ │ ├── manage.py-tpl │ │ │ └── project_name │ │ │ │ ├── __init__.py-tpl │ │ │ │ ├── settings.py-tpl │ │ │ │ ├── urls.py-tpl │ │ │ │ └── wsgi.py-tpl │ │ └── urls │ │ │ ├── __init__.py │ │ │ ├── i18n.py │ │ │ └── static.py │ ├── contrib │ │ ├── __init__.py │ │ ├── admin │ │ │ ├── __init__.py │ │ │ ├── actions.py │ │ │ ├── apps.py │ │ │ ├── bin │ │ │ │ └── compress.py │ │ │ ├── checks.py │ │ │ ├── decorators.py │ │ │ ├── exceptions.py │ │ │ ├── filters.py │ │ │ ├── forms.py │ │ │ ├── helpers.py │ │ │ ├── locale │ │ │ │ ├── af │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── am │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ar │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── ast │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── az │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── be │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── bg │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── bn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── br │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── bs │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── ca │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── cs │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── cy │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── da │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── de │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── dsb │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── el │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── en │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── en_AU │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── en_GB │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── eo │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── es │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── es_AR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── es_CO │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── es_MX │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── es_VE │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── et │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── eu │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── fa │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── fi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── fr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── fy │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── ga │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── gd │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── gl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── he │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── hi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── hr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── hsb │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── hu │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── ia │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── id │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── io │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── is │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── it │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── ja │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── ka │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── kab │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── kk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── km │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── kn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── ko │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── lb │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── lt │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── lv │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── mk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── ml │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── mn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── mr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── my │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── nb │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── ne │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── nl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── nn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── os │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── pa │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── pl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── pt │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── pt_BR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── ro │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── ru │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── sk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── sl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── sq │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── sr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── sr_Latn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── sv │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── sw │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── ta │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── te │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── th │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── tr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── tt │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── udm │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── uk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── ur │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── vi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── zh_Hans │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ └── zh_Hant │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ ├── django.po │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ └── djangojs.po │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_logentry_remove_auto_add.py │ │ │ │ ├── 0003_logentry_add_action_flag_choices.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── options.py │ │ │ ├── sites.py │ │ │ ├── static │ │ │ │ └── admin │ │ │ │ │ ├── css │ │ │ │ │ ├── autocomplete.css │ │ │ │ │ ├── base.css │ │ │ │ │ ├── changelists.css │ │ │ │ │ ├── dashboard.css │ │ │ │ │ ├── fonts.css │ │ │ │ │ ├── forms.css │ │ │ │ │ ├── login.css │ │ │ │ │ ├── responsive.css │ │ │ │ │ ├── responsive_rtl.css │ │ │ │ │ ├── rtl.css │ │ │ │ │ ├── vendor │ │ │ │ │ │ └── select2 │ │ │ │ │ │ │ ├── LICENSE-SELECT2.md │ │ │ │ │ │ │ ├── select2.css │ │ │ │ │ │ │ └── select2.min.css │ │ │ │ │ └── widgets.css │ │ │ │ │ ├── fonts │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── Roboto-Bold-webfont.woff │ │ │ │ │ ├── Roboto-Light-webfont.woff │ │ │ │ │ └── Roboto-Regular-webfont.woff │ │ │ │ │ ├── img │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── calendar-icons.svg │ │ │ │ │ ├── gis │ │ │ │ │ │ ├── move_vertex_off.svg │ │ │ │ │ │ └── move_vertex_on.svg │ │ │ │ │ ├── icon-addlink.svg │ │ │ │ │ ├── icon-alert.svg │ │ │ │ │ ├── icon-calendar.svg │ │ │ │ │ ├── icon-changelink.svg │ │ │ │ │ ├── icon-clock.svg │ │ │ │ │ ├── icon-deletelink.svg │ │ │ │ │ ├── icon-no.svg │ │ │ │ │ ├── icon-unknown-alt.svg │ │ │ │ │ ├── icon-unknown.svg │ │ │ │ │ ├── icon-viewlink.svg │ │ │ │ │ ├── icon-yes.svg │ │ │ │ │ ├── inline-delete.svg │ │ │ │ │ ├── search.svg │ │ │ │ │ ├── selector-icons.svg │ │ │ │ │ ├── sorting-icons.svg │ │ │ │ │ ├── tooltag-add.svg │ │ │ │ │ └── tooltag-arrowright.svg │ │ │ │ │ └── js │ │ │ │ │ ├── SelectBox.js │ │ │ │ │ ├── SelectFilter2.js │ │ │ │ │ ├── actions.js │ │ │ │ │ ├── actions.min.js │ │ │ │ │ ├── admin │ │ │ │ │ ├── DateTimeShortcuts.js │ │ │ │ │ └── RelatedObjectLookups.js │ │ │ │ │ ├── autocomplete.js │ │ │ │ │ ├── calendar.js │ │ │ │ │ ├── cancel.js │ │ │ │ │ ├── change_form.js │ │ │ │ │ ├── collapse.js │ │ │ │ │ ├── collapse.min.js │ │ │ │ │ ├── core.js │ │ │ │ │ ├── inlines.js │ │ │ │ │ ├── inlines.min.js │ │ │ │ │ ├── jquery.init.js │ │ │ │ │ ├── popup_response.js │ │ │ │ │ ├── prepopulate.js │ │ │ │ │ ├── prepopulate.min.js │ │ │ │ │ ├── prepopulate_init.js │ │ │ │ │ ├── timeparse.js │ │ │ │ │ ├── urlify.js │ │ │ │ │ └── vendor │ │ │ │ │ ├── jquery │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── jquery.js │ │ │ │ │ └── jquery.min.js │ │ │ │ │ ├── select2 │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ ├── i18n │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ ├── az.js │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ ├── eu.js │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ ├── hi.js │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ ├── is.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ ├── km.js │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ ├── lt.js │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ ├── mk.js │ │ │ │ │ │ ├── ms.js │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pt-BR.js │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ ├── sr-Cyrl.js │ │ │ │ │ │ ├── sr.js │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ ├── th.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ ├── zh-CN.js │ │ │ │ │ │ └── zh-TW.js │ │ │ │ │ ├── select2.full.js │ │ │ │ │ └── select2.full.min.js │ │ │ │ │ └── xregexp │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── xregexp.js │ │ │ │ │ └── xregexp.min.js │ │ │ ├── templates │ │ │ │ ├── admin │ │ │ │ │ ├── 404.html │ │ │ │ │ ├── 500.html │ │ │ │ │ ├── actions.html │ │ │ │ │ ├── app_index.html │ │ │ │ │ ├── auth │ │ │ │ │ │ └── user │ │ │ │ │ │ │ ├── add_form.html │ │ │ │ │ │ │ └── change_password.html │ │ │ │ │ ├── base.html │ │ │ │ │ ├── base_site.html │ │ │ │ │ ├── change_form.html │ │ │ │ │ ├── change_form_object_tools.html │ │ │ │ │ ├── change_list.html │ │ │ │ │ ├── change_list_object_tools.html │ │ │ │ │ ├── change_list_results.html │ │ │ │ │ ├── date_hierarchy.html │ │ │ │ │ ├── delete_confirmation.html │ │ │ │ │ ├── delete_selected_confirmation.html │ │ │ │ │ ├── edit_inline │ │ │ │ │ │ ├── stacked.html │ │ │ │ │ │ └── tabular.html │ │ │ │ │ ├── filter.html │ │ │ │ │ ├── includes │ │ │ │ │ │ ├── fieldset.html │ │ │ │ │ │ └── object_delete_summary.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── invalid_setup.html │ │ │ │ │ ├── login.html │ │ │ │ │ ├── object_history.html │ │ │ │ │ ├── pagination.html │ │ │ │ │ ├── popup_response.html │ │ │ │ │ ├── prepopulated_fields_js.html │ │ │ │ │ ├── related_widget_wrapper.html │ │ │ │ │ ├── search_form.html │ │ │ │ │ ├── submit_line.html │ │ │ │ │ └── widgets │ │ │ │ │ │ ├── clearable_file_input.html │ │ │ │ │ │ ├── foreign_key_raw_id.html │ │ │ │ │ │ ├── many_to_many_raw_id.html │ │ │ │ │ │ ├── radio.html │ │ │ │ │ │ ├── related_widget_wrapper.html │ │ │ │ │ │ ├── split_datetime.html │ │ │ │ │ │ └── url.html │ │ │ │ └── registration │ │ │ │ │ ├── logged_out.html │ │ │ │ │ ├── password_change_done.html │ │ │ │ │ ├── password_change_form.html │ │ │ │ │ ├── password_reset_complete.html │ │ │ │ │ ├── password_reset_confirm.html │ │ │ │ │ ├── password_reset_done.html │ │ │ │ │ ├── password_reset_email.html │ │ │ │ │ └── password_reset_form.html │ │ │ ├── templatetags │ │ │ │ ├── __init__.py │ │ │ │ ├── admin_list.py │ │ │ │ ├── admin_modify.py │ │ │ │ ├── admin_static.py │ │ │ │ ├── admin_urls.py │ │ │ │ ├── base.py │ │ │ │ └── log.py │ │ │ ├── tests.py │ │ │ ├── utils.py │ │ │ ├── views │ │ │ │ ├── __init__.py │ │ │ │ ├── autocomplete.py │ │ │ │ ├── decorators.py │ │ │ │ └── main.py │ │ │ └── widgets.py │ │ ├── admindocs │ │ │ ├── __init__.py │ │ │ ├── apps.py │ │ │ ├── locale │ │ │ │ ├── af │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ar │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ast │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── az │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── be │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── bg │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── bn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── br │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── bs │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ca │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── cs │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── cy │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── da │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── de │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── dsb │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── el │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── en │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── en_AU │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── en_GB │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── eo │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es_AR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es_CO │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es_MX │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es_VE │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── et │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── eu │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fa │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fy │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ga │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── gd │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── gl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── he │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hsb │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hu │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ia │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── id │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── io │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── is │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── it │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ja │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ka │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── kab │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── kk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── km │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── kn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ko │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── lb │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── lt │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── lv │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── mk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ml │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── mn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── mr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── my │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── nb │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ne │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── nl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── nn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── os │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pa │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pt │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pt_BR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ro │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ru │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sq │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sr_Latn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sv │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sw │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ta │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── te │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── th │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── tr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── tt │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── udm │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── uk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ur │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── vi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── zh_Hans │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ └── zh_Hant │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── middleware.py │ │ │ ├── templates │ │ │ │ └── admin_doc │ │ │ │ │ ├── bookmarklets.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── missing_docutils.html │ │ │ │ │ ├── model_detail.html │ │ │ │ │ ├── model_index.html │ │ │ │ │ ├── template_detail.html │ │ │ │ │ ├── template_filter_index.html │ │ │ │ │ ├── template_tag_index.html │ │ │ │ │ ├── view_detail.html │ │ │ │ │ └── view_index.html │ │ │ ├── urls.py │ │ │ ├── utils.py │ │ │ └── views.py │ │ ├── auth │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ ├── apps.py │ │ │ ├── backends.py │ │ │ ├── base_user.py │ │ │ ├── checks.py │ │ │ ├── common-passwords.txt.gz │ │ │ ├── context_processors.py │ │ │ ├── decorators.py │ │ │ ├── forms.py │ │ │ ├── handlers │ │ │ │ ├── __init__.py │ │ │ │ └── modwsgi.py │ │ │ ├── hashers.py │ │ │ ├── locale │ │ │ │ ├── af │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ar │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ast │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── az │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── be │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── bg │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── bn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── br │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── bs │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ca │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── cs │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── cy │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── da │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── de │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── dsb │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── el │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── en │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── en_AU │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── en_GB │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── eo │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es_AR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es_CO │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es_MX │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es_VE │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── et │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── eu │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fa │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fy │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ga │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── gd │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── gl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── he │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hsb │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hu │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ia │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── id │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── io │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── is │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── it │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ja │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ka │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── kab │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── kk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── km │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── kn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ko │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── lb │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── lt │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── lv │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── mk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ml │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── mn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── mr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── my │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── nb │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ne │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── nl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── nn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── os │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pa │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pt │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pt_BR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ro │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ru │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sq │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sr_Latn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sv │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sw │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ta │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── te │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── th │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── tr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── tt │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── udm │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── uk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ur │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── vi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── zh_Hans │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ └── zh_Hant │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── management │ │ │ │ ├── __init__.py │ │ │ │ └── commands │ │ │ │ │ ├── changepassword.py │ │ │ │ │ └── createsuperuser.py │ │ │ ├── middleware.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_alter_permission_name_max_length.py │ │ │ │ ├── 0003_alter_user_email_max_length.py │ │ │ │ ├── 0004_alter_user_username_opts.py │ │ │ │ ├── 0005_alter_user_last_login_null.py │ │ │ │ ├── 0006_require_contenttypes_0002.py │ │ │ │ ├── 0007_alter_validators_add_error_messages.py │ │ │ │ ├── 0008_alter_user_username_max_length.py │ │ │ │ ├── 0009_alter_user_last_name_max_length.py │ │ │ │ └── __init__.py │ │ │ ├── mixins.py │ │ │ ├── models.py │ │ │ ├── password_validation.py │ │ │ ├── signals.py │ │ │ ├── templates │ │ │ │ ├── auth │ │ │ │ │ └── widgets │ │ │ │ │ │ └── read_only_password_hash.html │ │ │ │ └── registration │ │ │ │ │ └── password_reset_subject.txt │ │ │ ├── tokens.py │ │ │ ├── urls.py │ │ │ ├── validators.py │ │ │ └── views.py │ │ ├── contenttypes │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ ├── apps.py │ │ │ ├── checks.py │ │ │ ├── fields.py │ │ │ ├── forms.py │ │ │ ├── locale │ │ │ │ ├── af │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ar │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ast │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── az │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── be │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── bg │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── bn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── br │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── bs │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ca │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── cs │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── cy │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── da │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── de │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── dsb │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── el │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── en │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── en_AU │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── en_GB │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── eo │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es_AR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es_CO │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es_MX │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es_VE │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── et │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── eu │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fa │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fy │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ga │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── gd │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── gl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── he │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hsb │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hu │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ia │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── id │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── io │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── is │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── it │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ja │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ka │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── kk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── km │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── kn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ko │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── lb │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── lt │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── lv │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── mk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ml │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── mn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── mr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── my │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── nb │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ne │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── nl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── nn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── os │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pa │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pt │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pt_BR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ro │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ru │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sq │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sr_Latn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sv │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sw │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ta │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── te │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── th │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── tr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── tt │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── udm │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── uk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ur │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── vi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── zh_Hans │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ └── zh_Hant │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── management │ │ │ │ ├── __init__.py │ │ │ │ └── commands │ │ │ │ │ └── remove_stale_contenttypes.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_remove_content_type_name.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ └── views.py │ │ ├── flatpages │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ ├── apps.py │ │ │ ├── forms.py │ │ │ ├── locale │ │ │ │ ├── af │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ar │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ast │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── az │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── be │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── bg │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── bn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── br │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── bs │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ca │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── cs │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── cy │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── da │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── de │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── dsb │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── el │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── en │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── en_AU │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── en_GB │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── eo │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es_AR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es_CO │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es_MX │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es_VE │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── et │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── eu │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fa │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fy │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ga │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── gd │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── gl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── he │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hsb │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hu │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ia │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── id │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── io │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── is │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── it │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ja │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ka │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── kk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── km │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── kn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ko │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── lb │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── lt │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── lv │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── mk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ml │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── mn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── mr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── my │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── nb │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ne │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── nl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── nn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── os │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pa │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pt │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pt_BR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ro │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ru │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sq │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sr_Latn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sv │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sw │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ta │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── te │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── th │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── tr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── tt │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── udm │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── uk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ur │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── vi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── zh_Hans │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ └── zh_Hant │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── middleware.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── sitemaps.py │ │ │ ├── templatetags │ │ │ │ ├── __init__.py │ │ │ │ └── flatpages.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── gis │ │ │ ├── __init__.py │ │ │ ├── admin │ │ │ │ ├── __init__.py │ │ │ │ ├── options.py │ │ │ │ └── widgets.py │ │ │ ├── apps.py │ │ │ ├── db │ │ │ │ ├── __init__.py │ │ │ │ ├── backends │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── base │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── adapter.py │ │ │ │ │ │ ├── features.py │ │ │ │ │ │ ├── models.py │ │ │ │ │ │ └── operations.py │ │ │ │ │ ├── mysql │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── features.py │ │ │ │ │ │ ├── introspection.py │ │ │ │ │ │ ├── operations.py │ │ │ │ │ │ └── schema.py │ │ │ │ │ ├── oracle │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── adapter.py │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── features.py │ │ │ │ │ │ ├── introspection.py │ │ │ │ │ │ ├── models.py │ │ │ │ │ │ ├── operations.py │ │ │ │ │ │ └── schema.py │ │ │ │ │ ├── postgis │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── adapter.py │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── const.py │ │ │ │ │ │ ├── features.py │ │ │ │ │ │ ├── introspection.py │ │ │ │ │ │ ├── models.py │ │ │ │ │ │ ├── operations.py │ │ │ │ │ │ ├── pgraster.py │ │ │ │ │ │ └── schema.py │ │ │ │ │ ├── spatialite │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── adapter.py │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── client.py │ │ │ │ │ │ ├── features.py │ │ │ │ │ │ ├── introspection.py │ │ │ │ │ │ ├── models.py │ │ │ │ │ │ ├── operations.py │ │ │ │ │ │ └── schema.py │ │ │ │ │ └── utils.py │ │ │ │ └── models │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── aggregates.py │ │ │ │ │ ├── fields.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── lookups.py │ │ │ │ │ ├── proxy.py │ │ │ │ │ └── sql │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── conversion.py │ │ │ ├── feeds.py │ │ │ ├── forms │ │ │ │ ├── __init__.py │ │ │ │ ├── fields.py │ │ │ │ └── widgets.py │ │ │ ├── gdal │ │ │ │ ├── LICENSE │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── datasource.py │ │ │ │ ├── driver.py │ │ │ │ ├── envelope.py │ │ │ │ ├── error.py │ │ │ │ ├── feature.py │ │ │ │ ├── field.py │ │ │ │ ├── geometries.py │ │ │ │ ├── geomtype.py │ │ │ │ ├── layer.py │ │ │ │ ├── libgdal.py │ │ │ │ ├── prototypes │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── ds.py │ │ │ │ │ ├── errcheck.py │ │ │ │ │ ├── generation.py │ │ │ │ │ ├── geom.py │ │ │ │ │ ├── raster.py │ │ │ │ │ └── srs.py │ │ │ │ ├── raster │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── band.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── const.py │ │ │ │ │ └── source.py │ │ │ │ └── srs.py │ │ │ ├── geoip2 │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ └── resources.py │ │ │ ├── geometry.py │ │ │ ├── geos │ │ │ │ ├── LICENSE │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── collections.py │ │ │ │ ├── coordseq.py │ │ │ │ ├── error.py │ │ │ │ ├── factory.py │ │ │ │ ├── geometry.py │ │ │ │ ├── io.py │ │ │ │ ├── libgeos.py │ │ │ │ ├── linestring.py │ │ │ │ ├── mutable_list.py │ │ │ │ ├── point.py │ │ │ │ ├── polygon.py │ │ │ │ ├── prepared.py │ │ │ │ └── prototypes │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── coordseq.py │ │ │ │ │ ├── errcheck.py │ │ │ │ │ ├── geom.py │ │ │ │ │ ├── io.py │ │ │ │ │ ├── misc.py │ │ │ │ │ ├── predicates.py │ │ │ │ │ ├── prepared.py │ │ │ │ │ ├── threadsafe.py │ │ │ │ │ └── topology.py │ │ │ ├── locale │ │ │ │ ├── af │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ar │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ast │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── az │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── be │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── bg │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── bn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── br │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── bs │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ca │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── cs │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── cy │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── da │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── de │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── dsb │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── el │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── en │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── en_AU │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── en_GB │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── eo │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es_AR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es_CO │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es_MX │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es_VE │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── et │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── eu │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fa │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fy │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ga │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── gd │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── gl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── he │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hsb │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hu │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ia │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── id │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── io │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── is │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── it │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ja │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ka │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── kk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── km │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── kn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ko │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── lb │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── lt │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── lv │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── mk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ml │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── mn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── mr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── my │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── nb │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ne │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── nl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── nn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── os │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pa │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pt │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pt_BR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ro │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ru │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sq │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sr_Latn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sv │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sw │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ta │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── te │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── th │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── tr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── tt │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── udm │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── uk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ur │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── vi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── zh_Hans │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ └── zh_Hant │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── management │ │ │ │ └── commands │ │ │ │ │ ├── inspectdb.py │ │ │ │ │ └── ogrinspect.py │ │ │ ├── measure.py │ │ │ ├── ptr.py │ │ │ ├── serializers │ │ │ │ ├── __init__.py │ │ │ │ └── geojson.py │ │ │ ├── shortcuts.py │ │ │ ├── sitemaps │ │ │ │ ├── __init__.py │ │ │ │ ├── kml.py │ │ │ │ └── views.py │ │ │ ├── static │ │ │ │ └── gis │ │ │ │ │ ├── css │ │ │ │ │ └── ol3.css │ │ │ │ │ ├── img │ │ │ │ │ ├── draw_line_off.svg │ │ │ │ │ ├── draw_line_on.svg │ │ │ │ │ ├── draw_point_off.svg │ │ │ │ │ ├── draw_point_on.svg │ │ │ │ │ ├── draw_polygon_off.svg │ │ │ │ │ └── draw_polygon_on.svg │ │ │ │ │ └── js │ │ │ │ │ └── OLMapWidget.js │ │ │ ├── templates │ │ │ │ └── gis │ │ │ │ │ ├── admin │ │ │ │ │ ├── openlayers.html │ │ │ │ │ ├── openlayers.js │ │ │ │ │ ├── osm.html │ │ │ │ │ └── osm.js │ │ │ │ │ ├── kml │ │ │ │ │ ├── base.kml │ │ │ │ │ └── placemarks.kml │ │ │ │ │ ├── openlayers-osm.html │ │ │ │ │ └── openlayers.html │ │ │ ├── utils │ │ │ │ ├── __init__.py │ │ │ │ ├── layermapping.py │ │ │ │ ├── ogrinfo.py │ │ │ │ ├── ogrinspect.py │ │ │ │ └── srs.py │ │ │ └── views.py │ │ ├── humanize │ │ │ ├── __init__.py │ │ │ ├── apps.py │ │ │ ├── locale │ │ │ │ ├── af │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ar │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ast │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── az │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── be │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── bg │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── bn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── br │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── bs │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ca │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── cs │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── cy │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── da │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── de │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── dsb │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── el │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── en │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── en_AU │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── en_GB │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── eo │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es_AR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es_CO │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es_MX │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es_VE │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── et │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── eu │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fa │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fy │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ga │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── gd │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── gl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── he │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hsb │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hu │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hy │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ia │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── id │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── io │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── is │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── it │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ja │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ka │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── kk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── km │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── kn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ko │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── lb │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── lt │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── lv │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── mk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ml │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── mn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── mr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── my │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── nb │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ne │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── nl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── nn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── os │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pa │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pt │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pt_BR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ro │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ru │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sq │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sr_Latn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sv │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sw │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ta │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── te │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── th │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── tr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── tt │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── udm │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── uk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ur │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── vi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── zh_Hans │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ └── zh_Hant │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ └── templatetags │ │ │ │ ├── __init__.py │ │ │ │ └── humanize.py │ │ ├── messages │ │ │ ├── __init__.py │ │ │ ├── api.py │ │ │ ├── apps.py │ │ │ ├── constants.py │ │ │ ├── context_processors.py │ │ │ ├── middleware.py │ │ │ ├── storage │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── cookie.py │ │ │ │ ├── fallback.py │ │ │ │ └── session.py │ │ │ ├── utils.py │ │ │ └── views.py │ │ ├── postgres │ │ │ ├── __init__.py │ │ │ ├── aggregates │ │ │ │ ├── __init__.py │ │ │ │ ├── general.py │ │ │ │ ├── mixins.py │ │ │ │ └── statistics.py │ │ │ ├── apps.py │ │ │ ├── fields │ │ │ │ ├── __init__.py │ │ │ │ ├── array.py │ │ │ │ ├── citext.py │ │ │ │ ├── hstore.py │ │ │ │ ├── jsonb.py │ │ │ │ ├── mixins.py │ │ │ │ ├── ranges.py │ │ │ │ └── utils.py │ │ │ ├── forms │ │ │ │ ├── __init__.py │ │ │ │ ├── array.py │ │ │ │ ├── hstore.py │ │ │ │ ├── jsonb.py │ │ │ │ └── ranges.py │ │ │ ├── functions.py │ │ │ ├── indexes.py │ │ │ ├── jinja2 │ │ │ │ └── postgres │ │ │ │ │ └── widgets │ │ │ │ │ └── split_array.html │ │ │ ├── locale │ │ │ │ ├── ar │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── be │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── bg │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ca │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── cs │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── da │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── de │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── dsb │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── el │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── en │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── eo │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es_AR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es_CO │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es_MX │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── et │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── eu │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fa │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── gd │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── gl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── he │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hsb │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hu │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ia │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── id │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── is │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── it │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ja │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ka │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── kk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ko │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── lt │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── lv │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── mk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── mn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── nb │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ne │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── nl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pt │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pt_BR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ro │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ru │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sq │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sv │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── tr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── uk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── zh_Hans │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ └── zh_Hant │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── lookups.py │ │ │ ├── operations.py │ │ │ ├── search.py │ │ │ ├── signals.py │ │ │ ├── templates │ │ │ │ └── postgres │ │ │ │ │ └── widgets │ │ │ │ │ └── split_array.html │ │ │ ├── utils.py │ │ │ └── validators.py │ │ ├── redirects │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ ├── apps.py │ │ │ ├── locale │ │ │ │ ├── af │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ar │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ast │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── az │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── be │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── bg │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── bn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── br │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── bs │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ca │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── cs │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── cy │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── da │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── de │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── dsb │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── el │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── en │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── en_AU │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── en_GB │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── eo │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es_AR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es_CO │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es_MX │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es_VE │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── et │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── eu │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fa │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fy │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ga │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── gd │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── gl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── he │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hsb │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hu │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ia │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── id │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── io │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── is │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── it │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ja │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ka │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── kab │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── kk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── km │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── kn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ko │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── lb │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── lt │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── lv │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── mk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ml │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── mn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── mr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── my │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── nb │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ne │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── nl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── nn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── os │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pa │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pt │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pt_BR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ro │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ru │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sq │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sr_Latn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sv │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sw │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ta │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── te │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── th │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── tr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── tt │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── udm │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── uk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ur │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── uz │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── vi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── zh_Hans │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ └── zh_Hant │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── middleware.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ └── __init__.py │ │ │ └── models.py │ │ ├── sessions │ │ │ ├── __init__.py │ │ │ ├── apps.py │ │ │ ├── backends │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── cache.py │ │ │ │ ├── cached_db.py │ │ │ │ ├── db.py │ │ │ │ ├── file.py │ │ │ │ └── signed_cookies.py │ │ │ ├── base_session.py │ │ │ ├── exceptions.py │ │ │ ├── locale │ │ │ │ ├── af │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ar │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ast │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── az │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── be │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── bg │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── bn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── br │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── bs │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ca │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── cs │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── cy │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── da │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── de │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── dsb │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── el │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── en │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── en_AU │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── en_GB │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── eo │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es_AR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es_CO │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es_MX │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es_VE │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── et │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── eu │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fa │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fy │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ga │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── gd │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── gl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── he │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hsb │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hu │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ia │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── id │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── io │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── is │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── it │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ja │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ka │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── kab │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── kk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── km │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── kn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ko │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── lb │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── lt │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── lv │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── mk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ml │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── mn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── mr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── my │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── nb │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ne │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── nl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── nn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── os │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pa │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pt │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pt_BR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ro │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ru │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sq │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sr_Latn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sv │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sw │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ta │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── te │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── th │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── tr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── tt │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── udm │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── uk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ur │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── uz │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── vi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── zh_Hans │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ └── zh_Hant │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── management │ │ │ │ └── commands │ │ │ │ │ └── clearsessions.py │ │ │ ├── middleware.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ └── serializers.py │ │ ├── sitemaps │ │ │ ├── __init__.py │ │ │ ├── apps.py │ │ │ ├── management │ │ │ │ └── commands │ │ │ │ │ └── ping_google.py │ │ │ ├── templates │ │ │ │ ├── sitemap.xml │ │ │ │ └── sitemap_index.xml │ │ │ └── views.py │ │ ├── sites │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ ├── apps.py │ │ │ ├── locale │ │ │ │ ├── af │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ar │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ast │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── az │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── be │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── bg │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── bn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── br │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── bs │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ca │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── cs │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── cy │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── da │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── de │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── dsb │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── el │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── en │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── en_AU │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── en_GB │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── eo │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es_AR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es_CO │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es_MX │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es_VE │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── et │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── eu │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fa │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fy │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ga │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── gd │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── gl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── he │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hsb │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hu │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hy │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ia │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── id │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── io │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── is │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── it │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ja │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ka │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── kab │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── kk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── km │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── kn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ko │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── lb │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── lt │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── lv │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── mk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ml │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── mn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── mr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── my │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── nb │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ne │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── nl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── nn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── os │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pa │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pt │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pt_BR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ro │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ru │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sq │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sr_Latn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sv │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sw │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ta │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── te │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── th │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── tr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── tt │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── udm │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── uk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ur │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── uz │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── vi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── zh_Hans │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ └── zh_Hant │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── management.py │ │ │ ├── managers.py │ │ │ ├── middleware.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_alter_domain_unique.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── requests.py │ │ │ └── shortcuts.py │ │ ├── staticfiles │ │ │ ├── __init__.py │ │ │ ├── apps.py │ │ │ ├── checks.py │ │ │ ├── finders.py │ │ │ ├── handlers.py │ │ │ ├── management │ │ │ │ └── commands │ │ │ │ │ ├── collectstatic.py │ │ │ │ │ ├── findstatic.py │ │ │ │ │ └── runserver.py │ │ │ ├── storage.py │ │ │ ├── templatetags │ │ │ │ ├── __init__.py │ │ │ │ └── staticfiles.py │ │ │ ├── testing.py │ │ │ ├── urls.py │ │ │ ├── utils.py │ │ │ └── views.py │ │ └── syndication │ │ │ ├── __init__.py │ │ │ ├── apps.py │ │ │ └── views.py │ ├── core │ │ ├── __init__.py │ │ ├── cache │ │ │ ├── __init__.py │ │ │ ├── backends │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── db.py │ │ │ │ ├── dummy.py │ │ │ │ ├── filebased.py │ │ │ │ ├── locmem.py │ │ │ │ └── memcached.py │ │ │ └── utils.py │ │ ├── checks │ │ │ ├── __init__.py │ │ │ ├── caches.py │ │ │ ├── compatibility │ │ │ │ └── __init__.py │ │ │ ├── database.py │ │ │ ├── messages.py │ │ │ ├── model_checks.py │ │ │ ├── registry.py │ │ │ ├── security │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── csrf.py │ │ │ │ └── sessions.py │ │ │ ├── templates.py │ │ │ └── urls.py │ │ ├── exceptions.py │ │ ├── files │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── images.py │ │ │ ├── locks.py │ │ │ ├── move.py │ │ │ ├── storage.py │ │ │ ├── temp.py │ │ │ ├── uploadedfile.py │ │ │ ├── uploadhandler.py │ │ │ └── utils.py │ │ ├── handlers │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── exception.py │ │ │ └── wsgi.py │ │ ├── mail │ │ │ ├── __init__.py │ │ │ ├── backends │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── console.py │ │ │ │ ├── dummy.py │ │ │ │ ├── filebased.py │ │ │ │ ├── locmem.py │ │ │ │ └── smtp.py │ │ │ ├── message.py │ │ │ └── utils.py │ │ ├── management │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── color.py │ │ │ ├── commands │ │ │ │ ├── check.py │ │ │ │ ├── compilemessages.py │ │ │ │ ├── createcachetable.py │ │ │ │ ├── dbshell.py │ │ │ │ ├── diffsettings.py │ │ │ │ ├── dumpdata.py │ │ │ │ ├── flush.py │ │ │ │ ├── inspectdb.py │ │ │ │ ├── loaddata.py │ │ │ │ ├── makemessages.py │ │ │ │ ├── makemigrations.py │ │ │ │ ├── migrate.py │ │ │ │ ├── runserver.py │ │ │ │ ├── sendtestemail.py │ │ │ │ ├── shell.py │ │ │ │ ├── showmigrations.py │ │ │ │ ├── sqlflush.py │ │ │ │ ├── sqlmigrate.py │ │ │ │ ├── sqlsequencereset.py │ │ │ │ ├── squashmigrations.py │ │ │ │ ├── startapp.py │ │ │ │ ├── startproject.py │ │ │ │ ├── test.py │ │ │ │ └── testserver.py │ │ │ ├── sql.py │ │ │ ├── templates.py │ │ │ └── utils.py │ │ ├── paginator.py │ │ ├── serializers │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── json.py │ │ │ ├── python.py │ │ │ ├── pyyaml.py │ │ │ └── xml_serializer.py │ │ ├── servers │ │ │ ├── __init__.py │ │ │ └── basehttp.py │ │ ├── signals.py │ │ ├── signing.py │ │ ├── validators.py │ │ └── wsgi.py │ ├── db │ │ ├── __init__.py │ │ ├── backends │ │ │ ├── __init__.py │ │ │ ├── base │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── client.py │ │ │ │ ├── creation.py │ │ │ │ ├── features.py │ │ │ │ ├── introspection.py │ │ │ │ ├── operations.py │ │ │ │ ├── schema.py │ │ │ │ └── validation.py │ │ │ ├── ddl_references.py │ │ │ ├── dummy │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ └── features.py │ │ │ ├── mysql │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── client.py │ │ │ │ ├── compiler.py │ │ │ │ ├── creation.py │ │ │ │ ├── features.py │ │ │ │ ├── introspection.py │ │ │ │ ├── operations.py │ │ │ │ ├── schema.py │ │ │ │ └── validation.py │ │ │ ├── oracle │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── client.py │ │ │ │ ├── creation.py │ │ │ │ ├── features.py │ │ │ │ ├── functions.py │ │ │ │ ├── introspection.py │ │ │ │ ├── operations.py │ │ │ │ ├── schema.py │ │ │ │ ├── utils.py │ │ │ │ └── validation.py │ │ │ ├── postgresql │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── client.py │ │ │ │ ├── creation.py │ │ │ │ ├── features.py │ │ │ │ ├── introspection.py │ │ │ │ ├── operations.py │ │ │ │ ├── schema.py │ │ │ │ └── utils.py │ │ │ ├── postgresql_psycopg2 │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── client.py │ │ │ │ ├── creation.py │ │ │ │ ├── features.py │ │ │ │ ├── introspection.py │ │ │ │ ├── operations.py │ │ │ │ ├── schema.py │ │ │ │ └── utils.py │ │ │ ├── signals.py │ │ │ ├── sqlite3 │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── client.py │ │ │ │ ├── creation.py │ │ │ │ ├── features.py │ │ │ │ ├── introspection.py │ │ │ │ ├── operations.py │ │ │ │ └── schema.py │ │ │ └── utils.py │ │ ├── migrations │ │ │ ├── __init__.py │ │ │ ├── autodetector.py │ │ │ ├── exceptions.py │ │ │ ├── executor.py │ │ │ ├── graph.py │ │ │ ├── loader.py │ │ │ ├── migration.py │ │ │ ├── operations │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── fields.py │ │ │ │ ├── models.py │ │ │ │ ├── special.py │ │ │ │ └── utils.py │ │ │ ├── optimizer.py │ │ │ ├── questioner.py │ │ │ ├── recorder.py │ │ │ ├── serializer.py │ │ │ ├── state.py │ │ │ ├── topological_sort.py │ │ │ ├── utils.py │ │ │ └── writer.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── aggregates.py │ │ │ ├── base.py │ │ │ ├── constants.py │ │ │ ├── constraints.py │ │ │ ├── deletion.py │ │ │ ├── expressions.py │ │ │ ├── fields │ │ │ │ ├── __init__.py │ │ │ │ ├── files.py │ │ │ │ ├── mixins.py │ │ │ │ ├── proxy.py │ │ │ │ ├── related.py │ │ │ │ ├── related_descriptors.py │ │ │ │ ├── related_lookups.py │ │ │ │ └── reverse_related.py │ │ │ ├── functions │ │ │ │ ├── __init__.py │ │ │ │ ├── comparison.py │ │ │ │ ├── datetime.py │ │ │ │ ├── math.py │ │ │ │ ├── text.py │ │ │ │ └── window.py │ │ │ ├── indexes.py │ │ │ ├── lookups.py │ │ │ ├── manager.py │ │ │ ├── options.py │ │ │ ├── query.py │ │ │ ├── query_utils.py │ │ │ ├── signals.py │ │ │ ├── sql │ │ │ │ ├── __init__.py │ │ │ │ ├── compiler.py │ │ │ │ ├── constants.py │ │ │ │ ├── datastructures.py │ │ │ │ ├── query.py │ │ │ │ ├── subqueries.py │ │ │ │ └── where.py │ │ │ └── utils.py │ │ ├── transaction.py │ │ └── utils.py │ ├── dispatch │ │ ├── __init__.py │ │ ├── dispatcher.py │ │ └── license.txt │ ├── forms │ │ ├── __init__.py │ │ ├── boundfield.py │ │ ├── fields.py │ │ ├── forms.py │ │ ├── formsets.py │ │ ├── jinja2 │ │ │ └── django │ │ │ │ └── forms │ │ │ │ └── widgets │ │ │ │ ├── attrs.html │ │ │ │ ├── checkbox.html │ │ │ │ ├── checkbox_option.html │ │ │ │ ├── checkbox_select.html │ │ │ │ ├── clearable_file_input.html │ │ │ │ ├── date.html │ │ │ │ ├── datetime.html │ │ │ │ ├── email.html │ │ │ │ ├── file.html │ │ │ │ ├── hidden.html │ │ │ │ ├── input.html │ │ │ │ ├── input_option.html │ │ │ │ ├── multiple_hidden.html │ │ │ │ ├── multiple_input.html │ │ │ │ ├── multiwidget.html │ │ │ │ ├── number.html │ │ │ │ ├── password.html │ │ │ │ ├── radio.html │ │ │ │ ├── radio_option.html │ │ │ │ ├── select.html │ │ │ │ ├── select_date.html │ │ │ │ ├── select_option.html │ │ │ │ ├── splitdatetime.html │ │ │ │ ├── splithiddendatetime.html │ │ │ │ ├── text.html │ │ │ │ ├── textarea.html │ │ │ │ ├── time.html │ │ │ │ └── url.html │ │ ├── models.py │ │ ├── renderers.py │ │ ├── templates │ │ │ └── django │ │ │ │ └── forms │ │ │ │ └── widgets │ │ │ │ ├── attrs.html │ │ │ │ ├── checkbox.html │ │ │ │ ├── checkbox_option.html │ │ │ │ ├── checkbox_select.html │ │ │ │ ├── clearable_file_input.html │ │ │ │ ├── date.html │ │ │ │ ├── datetime.html │ │ │ │ ├── email.html │ │ │ │ ├── file.html │ │ │ │ ├── hidden.html │ │ │ │ ├── input.html │ │ │ │ ├── input_option.html │ │ │ │ ├── multiple_hidden.html │ │ │ │ ├── multiple_input.html │ │ │ │ ├── multiwidget.html │ │ │ │ ├── number.html │ │ │ │ ├── password.html │ │ │ │ ├── radio.html │ │ │ │ ├── radio_option.html │ │ │ │ ├── select.html │ │ │ │ ├── select_date.html │ │ │ │ ├── select_option.html │ │ │ │ ├── splitdatetime.html │ │ │ │ ├── splithiddendatetime.html │ │ │ │ ├── text.html │ │ │ │ ├── textarea.html │ │ │ │ ├── time.html │ │ │ │ └── url.html │ │ ├── utils.py │ │ └── widgets.py │ ├── http │ │ ├── __init__.py │ │ ├── cookie.py │ │ ├── multipartparser.py │ │ ├── request.py │ │ └── response.py │ ├── middleware │ │ ├── __init__.py │ │ ├── cache.py │ │ ├── clickjacking.py │ │ ├── common.py │ │ ├── csrf.py │ │ ├── gzip.py │ │ ├── http.py │ │ ├── locale.py │ │ └── security.py │ ├── shortcuts.py │ ├── template │ │ ├── __init__.py │ │ ├── backends │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── django.py │ │ │ ├── dummy.py │ │ │ ├── jinja2.py │ │ │ └── utils.py │ │ ├── base.py │ │ ├── context.py │ │ ├── context_processors.py │ │ ├── defaultfilters.py │ │ ├── defaulttags.py │ │ ├── engine.py │ │ ├── exceptions.py │ │ ├── library.py │ │ ├── loader.py │ │ ├── loader_tags.py │ │ ├── loaders │ │ │ ├── __init__.py │ │ │ ├── app_directories.py │ │ │ ├── base.py │ │ │ ├── cached.py │ │ │ ├── filesystem.py │ │ │ └── locmem.py │ │ ├── response.py │ │ ├── smartif.py │ │ └── utils.py │ ├── templatetags │ │ ├── __init__.py │ │ ├── cache.py │ │ ├── i18n.py │ │ ├── l10n.py │ │ ├── static.py │ │ └── tz.py │ ├── test │ │ ├── __init__.py │ │ ├── client.py │ │ ├── html.py │ │ ├── runner.py │ │ ├── selenium.py │ │ ├── signals.py │ │ ├── testcases.py │ │ └── utils.py │ ├── urls │ │ ├── __init__.py │ │ ├── base.py │ │ ├── conf.py │ │ ├── converters.py │ │ ├── exceptions.py │ │ ├── resolvers.py │ │ └── utils.py │ ├── utils │ │ ├── __init__.py │ │ ├── _os.py │ │ ├── archive.py │ │ ├── autoreload.py │ │ ├── baseconv.py │ │ ├── cache.py │ │ ├── crypto.py │ │ ├── datastructures.py │ │ ├── dateformat.py │ │ ├── dateparse.py │ │ ├── dates.py │ │ ├── datetime_safe.py │ │ ├── deconstruct.py │ │ ├── decorators.py │ │ ├── deprecation.py │ │ ├── duration.py │ │ ├── encoding.py │ │ ├── feedgenerator.py │ │ ├── formats.py │ │ ├── functional.py │ │ ├── html.py │ │ ├── http.py │ │ ├── inspect.py │ │ ├── ipv6.py │ │ ├── itercompat.py │ │ ├── jslex.py │ │ ├── log.py │ │ ├── lorem_ipsum.py │ │ ├── lru_cache.py │ │ ├── module_loading.py │ │ ├── numberformat.py │ │ ├── regex_helper.py │ │ ├── safestring.py │ │ ├── six.py │ │ ├── termcolors.py │ │ ├── text.py │ │ ├── timesince.py │ │ ├── timezone.py │ │ ├── translation │ │ │ ├── __init__.py │ │ │ ├── template.py │ │ │ ├── trans_null.py │ │ │ └── trans_real.py │ │ ├── tree.py │ │ ├── version.py │ │ └── xmlutils.py │ └── views │ │ ├── __init__.py │ │ ├── csrf.py │ │ ├── debug.py │ │ ├── decorators │ │ ├── __init__.py │ │ ├── cache.py │ │ ├── clickjacking.py │ │ ├── csrf.py │ │ ├── debug.py │ │ ├── gzip.py │ │ ├── http.py │ │ └── vary.py │ │ ├── defaults.py │ │ ├── generic │ │ ├── __init__.py │ │ ├── base.py │ │ ├── dates.py │ │ ├── detail.py │ │ ├── edit.py │ │ └── list.py │ │ ├── i18n.py │ │ ├── static.py │ │ └── templates │ │ ├── default_urlconf.html │ │ ├── technical_404.html │ │ ├── technical_500.html │ │ └── technical_500.txt ├── docs │ ├── Makefile │ ├── README │ ├── _ext │ │ ├── cve_role.py │ │ ├── djangodocs.py │ │ └── ticket_role.py │ ├── _theme │ │ ├── djangodocs-epub │ │ │ ├── epub-cover.html │ │ │ ├── static │ │ │ │ ├── docicons-behindscenes.png │ │ │ │ ├── docicons-note.png │ │ │ │ ├── docicons-philosophy.png │ │ │ │ ├── docicons-warning.png │ │ │ │ └── epub.css │ │ │ └── theme.conf │ │ └── djangodocs │ │ │ ├── genindex.html │ │ │ ├── layout.html │ │ │ ├── modindex.html │ │ │ ├── search.html │ │ │ ├── static │ │ │ ├── console-tabs.css │ │ │ ├── default.css │ │ │ ├── djangodocs.css │ │ │ ├── docicons-behindscenes.png │ │ │ ├── docicons-note.png │ │ │ ├── docicons-philosophy.png │ │ │ ├── docicons-warning.png │ │ │ ├── fontawesome │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── css │ │ │ │ │ └── fa-brands.min.css │ │ │ │ └── webfonts │ │ │ │ │ ├── fa-brands-400.eot │ │ │ │ │ ├── fa-brands-400.svg │ │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ │ ├── fa-brands-400.woff │ │ │ │ │ └── fa-brands-400.woff2 │ │ │ ├── homepage.css │ │ │ └── reset-fonts-grids.css │ │ │ └── theme.conf │ ├── conf.py │ ├── contents.txt │ ├── faq │ │ ├── admin.txt │ │ ├── contributing.txt │ │ ├── general.txt │ │ ├── help.txt │ │ ├── index.txt │ │ ├── install.txt │ │ ├── models.txt │ │ ├── troubleshooting.txt │ │ └── usage.txt │ ├── glossary.txt │ ├── howto │ │ ├── auth-remote-user.txt │ │ ├── custom-file-storage.txt │ │ ├── custom-lookups.txt │ │ ├── custom-management-commands.txt │ │ ├── custom-model-fields.txt │ │ ├── custom-template-tags.txt │ │ ├── deployment │ │ │ ├── checklist.txt │ │ │ ├── index.txt │ │ │ └── wsgi │ │ │ │ ├── apache-auth.txt │ │ │ │ ├── gunicorn.txt │ │ │ │ ├── index.txt │ │ │ │ ├── modwsgi.txt │ │ │ │ └── uwsgi.txt │ │ ├── error-reporting.txt │ │ ├── index.txt │ │ ├── initial-data.txt │ │ ├── jython.txt │ │ ├── legacy-databases.txt │ │ ├── outputting-csv.txt │ │ ├── outputting-pdf.txt │ │ ├── overriding-templates.txt │ │ ├── static-files │ │ │ ├── deployment.txt │ │ │ └── index.txt │ │ ├── upgrade-version.txt │ │ ├── windows.txt │ │ └── writing-migrations.txt │ ├── index.txt │ ├── internals │ │ ├── _images │ │ │ ├── triage_process.graffle │ │ │ ├── triage_process.pdf │ │ │ └── triage_process.svg │ │ ├── contributing │ │ │ ├── bugs-and-features.txt │ │ │ ├── committing-code.txt │ │ │ ├── index.txt │ │ │ ├── localizing.txt │ │ │ ├── new-contributors.txt │ │ │ ├── triaging-tickets.txt │ │ │ ├── writing-code │ │ │ │ ├── coding-style.txt │ │ │ │ ├── index.txt │ │ │ │ ├── javascript.txt │ │ │ │ ├── submitting-patches.txt │ │ │ │ ├── unit-tests.txt │ │ │ │ └── working-with-git.txt │ │ │ └── writing-documentation.txt │ │ ├── deprecation.txt │ │ ├── git.txt │ │ ├── howto-release-django.txt │ │ ├── index.txt │ │ ├── mailing-lists.txt │ │ ├── organization.txt │ │ ├── release-process.txt │ │ └── security.txt │ ├── intro │ │ ├── _images │ │ │ ├── admin01.png │ │ │ ├── admin02.png │ │ │ ├── admin03t.png │ │ │ ├── admin04t.png │ │ │ ├── admin05t.png │ │ │ ├── admin06t.png │ │ │ ├── admin07.png │ │ │ ├── admin08t.png │ │ │ ├── admin09.png │ │ │ ├── admin10t.png │ │ │ ├── admin11t.png │ │ │ ├── admin12t.png │ │ │ ├── admin13t.png │ │ │ └── admin14t.png │ │ ├── contributing.txt │ │ ├── index.txt │ │ ├── install.txt │ │ ├── overview.txt │ │ ├── reusable-apps.txt │ │ ├── tutorial01.txt │ │ ├── tutorial02.txt │ │ ├── tutorial03.txt │ │ ├── tutorial04.txt │ │ ├── tutorial05.txt │ │ ├── tutorial06.txt │ │ ├── tutorial07.txt │ │ └── whatsnext.txt │ ├── make.bat │ ├── man │ │ └── django-admin.1 │ ├── misc │ │ ├── api-stability.txt │ │ ├── design-philosophies.txt │ │ ├── distributions.txt │ │ └── index.txt │ ├── ref │ │ ├── applications.txt │ │ ├── checks.txt │ │ ├── class-based-views │ │ │ ├── base.txt │ │ │ ├── flattened-index.txt │ │ │ ├── generic-date-based.txt │ │ │ ├── generic-display.txt │ │ │ ├── generic-editing.txt │ │ │ ├── index.txt │ │ │ ├── mixins-date-based.txt │ │ │ ├── mixins-editing.txt │ │ │ ├── mixins-multiple-object.txt │ │ │ ├── mixins-simple.txt │ │ │ ├── mixins-single-object.txt │ │ │ └── mixins.txt │ │ ├── clickjacking.txt │ │ ├── contrib │ │ │ ├── admin │ │ │ │ ├── _images │ │ │ │ │ ├── actions-as-modeladmin-methods.png │ │ │ │ │ ├── adding-actions-to-the-modeladmin.png │ │ │ │ │ ├── admin-actions.png │ │ │ │ │ ├── fieldsets.png │ │ │ │ │ ├── list_filter.png │ │ │ │ │ └── raw_id_fields.png │ │ │ │ ├── actions.txt │ │ │ │ ├── admindocs.txt │ │ │ │ ├── index.txt │ │ │ │ └── javascript.txt │ │ │ ├── auth.txt │ │ │ ├── contenttypes.txt │ │ │ ├── flatpages.txt │ │ │ ├── gis │ │ │ │ ├── admin.txt │ │ │ │ ├── commands.txt │ │ │ │ ├── db-api.txt │ │ │ │ ├── deployment.txt │ │ │ │ ├── feeds.txt │ │ │ │ ├── forms-api.txt │ │ │ │ ├── functions.txt │ │ │ │ ├── gdal.txt │ │ │ │ ├── geoip2.txt │ │ │ │ ├── geoquerysets.txt │ │ │ │ ├── geos.txt │ │ │ │ ├── index.txt │ │ │ │ ├── install │ │ │ │ │ ├── geolibs.txt │ │ │ │ │ ├── index.txt │ │ │ │ │ ├── postgis.txt │ │ │ │ │ └── spatialite.txt │ │ │ │ ├── layermapping.txt │ │ │ │ ├── measure.txt │ │ │ │ ├── model-api.txt │ │ │ │ ├── ogrinspect.txt │ │ │ │ ├── serializers.txt │ │ │ │ ├── sitemaps.txt │ │ │ │ ├── testing.txt │ │ │ │ ├── tutorial.txt │ │ │ │ └── utils.txt │ │ │ ├── humanize.txt │ │ │ ├── index.txt │ │ │ ├── messages.txt │ │ │ ├── postgres │ │ │ │ ├── aggregates.txt │ │ │ │ ├── fields.txt │ │ │ │ ├── forms.txt │ │ │ │ ├── functions.txt │ │ │ │ ├── index.txt │ │ │ │ ├── indexes.txt │ │ │ │ ├── lookups.txt │ │ │ │ ├── operations.txt │ │ │ │ ├── search.txt │ │ │ │ └── validators.txt │ │ │ ├── redirects.txt │ │ │ ├── sitemaps.txt │ │ │ ├── sites.txt │ │ │ ├── staticfiles.txt │ │ │ └── syndication.txt │ │ ├── csrf.txt │ │ ├── databases.txt │ │ ├── django-admin.txt │ │ ├── exceptions.txt │ │ ├── files │ │ │ ├── file.txt │ │ │ ├── index.txt │ │ │ ├── storage.txt │ │ │ └── uploads.txt │ │ ├── forms │ │ │ ├── api.txt │ │ │ ├── fields.txt │ │ │ ├── formsets.txt │ │ │ ├── index.txt │ │ │ ├── models.txt │ │ │ ├── renderers.txt │ │ │ ├── validation.txt │ │ │ └── widgets.txt │ │ ├── index.txt │ │ ├── middleware.txt │ │ ├── migration-operations.txt │ │ ├── models │ │ │ ├── check-constraints.txt │ │ │ ├── class.txt │ │ │ ├── conditional-expressions.txt │ │ │ ├── database-functions.txt │ │ │ ├── expressions.txt │ │ │ ├── fields.txt │ │ │ ├── index.txt │ │ │ ├── indexes.txt │ │ │ ├── instances.txt │ │ │ ├── lookups.txt │ │ │ ├── meta.txt │ │ │ ├── options.txt │ │ │ ├── querysets.txt │ │ │ └── relations.txt │ │ ├── request-response.txt │ │ ├── schema-editor.txt │ │ ├── settings.txt │ │ ├── signals.txt │ │ ├── template-response.txt │ │ ├── templates │ │ │ ├── api.txt │ │ │ ├── builtins.txt │ │ │ ├── index.txt │ │ │ └── language.txt │ │ ├── unicode.txt │ │ ├── urlresolvers.txt │ │ ├── urls.txt │ │ ├── utils.txt │ │ ├── validators.txt │ │ └── views.txt │ ├── releases │ │ ├── 0.95.txt │ │ ├── 0.96.txt │ │ ├── 1.0-porting-guide.txt │ │ ├── 1.0.1.txt │ │ ├── 1.0.2.txt │ │ ├── 1.0.txt │ │ ├── 1.1.2.txt │ │ ├── 1.1.3.txt │ │ ├── 1.1.4.txt │ │ ├── 1.1.txt │ │ ├── 1.10.1.txt │ │ ├── 1.10.2.txt │ │ ├── 1.10.3.txt │ │ ├── 1.10.4.txt │ │ ├── 1.10.5.txt │ │ ├── 1.10.6.txt │ │ ├── 1.10.7.txt │ │ ├── 1.10.8.txt │ │ ├── 1.10.txt │ │ ├── 1.11.1.txt │ │ ├── 1.11.10.txt │ │ ├── 1.11.11.txt │ │ ├── 1.11.12.txt │ │ ├── 1.11.13.txt │ │ ├── 1.11.14.txt │ │ ├── 1.11.15.txt │ │ ├── 1.11.16.txt │ │ ├── 1.11.2.txt │ │ ├── 1.11.3.txt │ │ ├── 1.11.4.txt │ │ ├── 1.11.5.txt │ │ ├── 1.11.6.txt │ │ ├── 1.11.7.txt │ │ ├── 1.11.8.txt │ │ ├── 1.11.9.txt │ │ ├── 1.11.txt │ │ ├── 1.2.1.txt │ │ ├── 1.2.2.txt │ │ ├── 1.2.3.txt │ │ ├── 1.2.4.txt │ │ ├── 1.2.5.txt │ │ ├── 1.2.6.txt │ │ ├── 1.2.7.txt │ │ ├── 1.2.txt │ │ ├── 1.3.1.txt │ │ ├── 1.3.2.txt │ │ ├── 1.3.3.txt │ │ ├── 1.3.4.txt │ │ ├── 1.3.5.txt │ │ ├── 1.3.6.txt │ │ ├── 1.3.7.txt │ │ ├── 1.3.txt │ │ ├── 1.4.1.txt │ │ ├── 1.4.10.txt │ │ ├── 1.4.11.txt │ │ ├── 1.4.12.txt │ │ ├── 1.4.13.txt │ │ ├── 1.4.14.txt │ │ ├── 1.4.15.txt │ │ ├── 1.4.16.txt │ │ ├── 1.4.17.txt │ │ ├── 1.4.18.txt │ │ ├── 1.4.19.txt │ │ ├── 1.4.2.txt │ │ ├── 1.4.20.txt │ │ ├── 1.4.21.txt │ │ ├── 1.4.22.txt │ │ ├── 1.4.3.txt │ │ ├── 1.4.4.txt │ │ ├── 1.4.5.txt │ │ ├── 1.4.6.txt │ │ ├── 1.4.7.txt │ │ ├── 1.4.8.txt │ │ ├── 1.4.9.txt │ │ ├── 1.4.txt │ │ ├── 1.5.1.txt │ │ ├── 1.5.10.txt │ │ ├── 1.5.11.txt │ │ ├── 1.5.12.txt │ │ ├── 1.5.2.txt │ │ ├── 1.5.3.txt │ │ ├── 1.5.4.txt │ │ ├── 1.5.5.txt │ │ ├── 1.5.6.txt │ │ ├── 1.5.7.txt │ │ ├── 1.5.8.txt │ │ ├── 1.5.9.txt │ │ ├── 1.5.txt │ │ ├── 1.6.1.txt │ │ ├── 1.6.10.txt │ │ ├── 1.6.11.txt │ │ ├── 1.6.2.txt │ │ ├── 1.6.3.txt │ │ ├── 1.6.4.txt │ │ ├── 1.6.5.txt │ │ ├── 1.6.6.txt │ │ ├── 1.6.7.txt │ │ ├── 1.6.8.txt │ │ ├── 1.6.9.txt │ │ ├── 1.6.txt │ │ ├── 1.7.1.txt │ │ ├── 1.7.10.txt │ │ ├── 1.7.11.txt │ │ ├── 1.7.2.txt │ │ ├── 1.7.3.txt │ │ ├── 1.7.4.txt │ │ ├── 1.7.5.txt │ │ ├── 1.7.6.txt │ │ ├── 1.7.7.txt │ │ ├── 1.7.8.txt │ │ ├── 1.7.9.txt │ │ ├── 1.7.txt │ │ ├── 1.8.1.txt │ │ ├── 1.8.10.txt │ │ ├── 1.8.11.txt │ │ ├── 1.8.12.txt │ │ ├── 1.8.13.txt │ │ ├── 1.8.14.txt │ │ ├── 1.8.15.txt │ │ ├── 1.8.16.txt │ │ ├── 1.8.17.txt │ │ ├── 1.8.18.txt │ │ ├── 1.8.19.txt │ │ ├── 1.8.2.txt │ │ ├── 1.8.3.txt │ │ ├── 1.8.4.txt │ │ ├── 1.8.5.txt │ │ ├── 1.8.6.txt │ │ ├── 1.8.7.txt │ │ ├── 1.8.8.txt │ │ ├── 1.8.9.txt │ │ ├── 1.8.txt │ │ ├── 1.9.1.txt │ │ ├── 1.9.10.txt │ │ ├── 1.9.11.txt │ │ ├── 1.9.12.txt │ │ ├── 1.9.13.txt │ │ ├── 1.9.2.txt │ │ ├── 1.9.3.txt │ │ ├── 1.9.4.txt │ │ ├── 1.9.5.txt │ │ ├── 1.9.6.txt │ │ ├── 1.9.7.txt │ │ ├── 1.9.8.txt │ │ ├── 1.9.9.txt │ │ ├── 1.9.txt │ │ ├── 2.0.1.txt │ │ ├── 2.0.2.txt │ │ ├── 2.0.3.txt │ │ ├── 2.0.4.txt │ │ ├── 2.0.5.txt │ │ ├── 2.0.6.txt │ │ ├── 2.0.7.txt │ │ ├── 2.0.8.txt │ │ ├── 2.0.9.txt │ │ ├── 2.0.txt │ │ ├── 2.1.1.txt │ │ ├── 2.1.txt │ │ ├── 2.2.txt │ │ ├── index.txt │ │ └── security.txt │ ├── spelling_wordlist │ └── topics │ │ ├── _images │ │ ├── postmortem.png │ │ └── template-lines.png │ │ ├── auth │ │ ├── customizing.txt │ │ ├── default.txt │ │ ├── index.txt │ │ └── passwords.txt │ │ ├── cache.txt │ │ ├── checks.txt │ │ ├── class-based-views │ │ ├── generic-display.txt │ │ ├── generic-editing.txt │ │ ├── index.txt │ │ ├── intro.txt │ │ └── mixins.txt │ │ ├── conditional-view-processing.txt │ │ ├── db │ │ ├── aggregation.txt │ │ ├── examples │ │ │ ├── index.txt │ │ │ ├── many_to_many.txt │ │ │ ├── many_to_one.txt │ │ │ └── one_to_one.txt │ │ ├── index.txt │ │ ├── instrumentation.txt │ │ ├── managers.txt │ │ ├── models.txt │ │ ├── multi-db.txt │ │ ├── optimization.txt │ │ ├── queries.txt │ │ ├── search.txt │ │ ├── sql.txt │ │ ├── tablespaces.txt │ │ └── transactions.txt │ │ ├── email.txt │ │ ├── external-packages.txt │ │ ├── files.txt │ │ ├── forms │ │ ├── formsets.txt │ │ ├── index.txt │ │ ├── media.txt │ │ └── modelforms.txt │ │ ├── http │ │ ├── _images │ │ │ └── middleware.pdf │ │ ├── decorators.txt │ │ ├── file-uploads.txt │ │ ├── generic-views.txt │ │ ├── index.txt │ │ ├── middleware.txt │ │ ├── sessions.txt │ │ ├── shortcuts.txt │ │ ├── urls.txt │ │ └── views.txt │ │ ├── i18n │ │ ├── formatting.txt │ │ ├── index.txt │ │ ├── timezones.txt │ │ └── translation.txt │ │ ├── index.txt │ │ ├── install.txt │ │ ├── logging.txt │ │ ├── migrations.txt │ │ ├── pagination.txt │ │ ├── performance.txt │ │ ├── security.txt │ │ ├── serialization.txt │ │ ├── settings.txt │ │ ├── signals.txt │ │ ├── signing.txt │ │ ├── templates.txt │ │ └── testing │ │ ├── _images │ │ ├── django_unittest_classes_hierarchy.graffle │ │ ├── django_unittest_classes_hierarchy.pdf │ │ └── django_unittest_classes_hierarchy.svg │ │ ├── advanced.txt │ │ ├── index.txt │ │ ├── overview.txt │ │ └── tools.txt ├── extras │ ├── Makefile │ ├── README.TXT │ └── django_bash_completion ├── js_tests │ ├── admin │ │ ├── DateTimeShortcuts.test.js │ │ ├── RelatedObjectLookups.test.js │ │ ├── SelectBox.test.js │ │ ├── SelectFilter2.test.js │ │ ├── URLify.test.js │ │ ├── actions.test.js │ │ ├── core.test.js │ │ ├── inlines.test.js │ │ ├── jsi18n-mocks.test.js │ │ └── timeparse.test.js │ ├── gis │ │ └── mapwidget.test.js │ ├── qunit │ │ ├── qunit.css │ │ └── qunit.js │ └── tests.html ├── package.json ├── scripts │ ├── manage_translations.py │ └── rpm-install.sh ├── setup.cfg ├── setup.py ├── tests │ ├── .coveragerc │ ├── README.rst │ ├── absolute_url_overrides │ │ ├── __init__.py │ │ └── tests.py │ ├── admin_autodiscover │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── models.py │ │ └── tests.py │ ├── admin_changelist │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── models.py │ │ ├── test_date_hierarchy.py │ │ ├── tests.py │ │ └── urls.py │ ├── admin_checks │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── admin_custom_urls │ │ ├── __init__.py │ │ ├── models.py │ │ ├── tests.py │ │ └── urls.py │ ├── admin_default_site │ │ ├── __init__.py │ │ ├── apps.py │ │ ├── sites.py │ │ └── tests.py │ ├── admin_docs │ │ ├── __init__.py │ │ ├── evilfile.txt │ │ ├── models.py │ │ ├── namespace_urls.py │ │ ├── test_middleware.py │ │ ├── test_utils.py │ │ ├── test_views.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── admin_filters │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── admin_inlines │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── models.py │ │ ├── test_templates.py │ │ ├── tests.py │ │ └── urls.py │ ├── admin_ordering │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── admin_registration │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── admin_scripts │ │ ├── __init__.py │ │ ├── another_app_waiting_migration │ │ │ ├── __init__.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ └── __init__.py │ │ │ └── models.py │ │ ├── app_raising_messages │ │ │ ├── __init__.py │ │ │ └── models.py │ │ ├── app_raising_warning │ │ │ ├── __init__.py │ │ │ └── models.py │ │ ├── app_waiting_migration │ │ │ ├── __init__.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ └── __init__.py │ │ │ └── models.py │ │ ├── app_with_import │ │ │ ├── __init__.py │ │ │ └── models.py │ │ ├── broken_app │ │ │ ├── __init__.py │ │ │ └── models.py │ │ ├── complex_app │ │ │ ├── __init__.py │ │ │ ├── admin │ │ │ │ ├── __init__.py │ │ │ │ └── foo.py │ │ │ ├── management │ │ │ │ └── commands │ │ │ │ │ └── duplicate.py │ │ │ └── models │ │ │ │ ├── __init__.py │ │ │ │ ├── bar.py │ │ │ │ └── foo.py │ │ ├── custom_templates │ │ │ ├── app_template │ │ │ │ ├── __init__.py │ │ │ │ └── api.py │ │ │ ├── project_template.tgz │ │ │ └── project_template │ │ │ │ ├── additional_dir │ │ │ │ ├── Procfile │ │ │ │ ├── additional_file.py │ │ │ │ ├── extra.py │ │ │ │ ├── localized.py │ │ │ │ └── requirements.txt │ │ │ │ ├── manage.py-tpl │ │ │ │ ├── project_name │ │ │ │ ├── __init__.py │ │ │ │ └── settings.py │ │ │ │ ├── ticket-18091-non-ascii-template.txt │ │ │ │ └── ticket-19397-binary-file.ico │ │ ├── management │ │ │ └── commands │ │ │ │ ├── app_command.py │ │ │ │ ├── base_command.py │ │ │ │ ├── custom_startproject.py │ │ │ │ ├── label_command.py │ │ │ │ └── noargs_command.py │ │ ├── simple_app │ │ │ ├── __init__.py │ │ │ ├── management │ │ │ │ └── commands │ │ │ │ │ └── duplicate.py │ │ │ └── models.py │ │ ├── tests.py │ │ └── urls.py │ ├── admin_utils │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── models.py │ │ ├── test_logentry.py │ │ ├── tests.py │ │ └── urls.py │ ├── admin_views │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── custom_has_permission_admin.py │ │ ├── customadmin.py │ │ ├── forms.py │ │ ├── models.py │ │ ├── templates │ │ │ ├── admin │ │ │ │ ├── admin_views │ │ │ │ │ └── article │ │ │ │ │ │ ├── actions.html │ │ │ │ │ │ ├── change_form_object_tools.html │ │ │ │ │ │ ├── change_list_object_tools.html │ │ │ │ │ │ ├── change_list_results.html │ │ │ │ │ │ ├── date_hierarchy.html │ │ │ │ │ │ ├── pagination.html │ │ │ │ │ │ ├── prepopulated_fields_js.html │ │ │ │ │ │ ├── search_form.html │ │ │ │ │ │ └── submit_line.html │ │ │ │ └── base_site.html │ │ │ └── custom_filter_template.html │ │ ├── test_actions.py │ │ ├── test_adminsite.py │ │ ├── test_autocomplete_view.py │ │ ├── test_forms.py │ │ ├── test_multidb.py │ │ ├── test_static_deprecation.py │ │ ├── test_templatetags.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── admin_widgets │ │ ├── __init__.py │ │ ├── models.py │ │ ├── test_autocomplete_widget.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── widgetadmin.py │ ├── aggregation │ │ ├── __init__.py │ │ ├── models.py │ │ ├── test_filter_argument.py │ │ └── tests.py │ ├── aggregation_regress │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── annotations │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── app_loading │ │ ├── __init__.py │ │ ├── eggs │ │ │ ├── brokenapp.egg │ │ │ ├── modelapp.egg │ │ │ ├── nomodelapp.egg │ │ │ └── omelet.egg │ │ ├── not_installed │ │ │ ├── __init__.py │ │ │ └── models.py │ │ └── tests.py │ ├── apps │ │ ├── __init__.py │ │ ├── apps.py │ │ ├── default_config_app │ │ │ ├── __init__.py │ │ │ └── apps.py │ │ ├── models.py │ │ ├── namespace_package_base │ │ │ └── nsapp │ │ │ │ └── apps.py │ │ ├── namespace_package_other_base │ │ │ └── nsapp │ │ │ │ └── .keep │ │ └── tests.py │ ├── auth_tests │ │ ├── __init__.py │ │ ├── backend_alias.py │ │ ├── client.py │ │ ├── common-passwords-custom.txt │ │ ├── fixtures │ │ │ ├── natural.json │ │ │ └── regular.json │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── custom_permissions.py │ │ │ ├── custom_user.py │ │ │ ├── invalid_models.py │ │ │ ├── is_active.py │ │ │ ├── minimal.py │ │ │ ├── no_password.py │ │ │ ├── uuid_pk.py │ │ │ ├── with_custom_email_field.py │ │ │ ├── with_foreign_key.py │ │ │ ├── with_integer_username.py │ │ │ └── with_last_login_attr.py │ │ ├── settings.py │ │ ├── templates │ │ │ ├── context_processors │ │ │ │ ├── auth_attrs_access.html │ │ │ │ ├── auth_attrs_messages.html │ │ │ │ ├── auth_attrs_no_access.html │ │ │ │ ├── auth_attrs_perm_in_perms.html │ │ │ │ ├── auth_attrs_perms.html │ │ │ │ ├── auth_attrs_test_access.html │ │ │ │ └── auth_attrs_user.html │ │ │ └── registration │ │ │ │ ├── html_password_reset_email.html │ │ │ │ ├── logged_out.html │ │ │ │ ├── login.html │ │ │ │ ├── password_change_form.html │ │ │ │ ├── password_reset_complete.html │ │ │ │ ├── password_reset_confirm.html │ │ │ │ ├── password_reset_done.html │ │ │ │ ├── password_reset_email.html │ │ │ │ ├── password_reset_form.html │ │ │ │ └── password_reset_subject.txt │ │ ├── test_admin_multidb.py │ │ ├── test_auth_backends.py │ │ ├── test_basic.py │ │ ├── test_checks.py │ │ ├── test_context_processors.py │ │ ├── test_decorators.py │ │ ├── test_forms.py │ │ ├── test_handlers.py │ │ ├── test_hashers.py │ │ ├── test_management.py │ │ ├── test_middleware.py │ │ ├── test_mixins.py │ │ ├── test_models.py │ │ ├── test_remote_user.py │ │ ├── test_signals.py │ │ ├── test_templates.py │ │ ├── test_tokens.py │ │ ├── test_validators.py │ │ ├── test_views.py │ │ ├── urls.py │ │ ├── urls_admin.py │ │ └── urls_custom_user_admin.py │ ├── backends │ │ ├── __init__.py │ │ ├── base │ │ │ ├── __init__.py │ │ │ ├── test_base.py │ │ │ ├── test_creation.py │ │ │ ├── test_features.py │ │ │ └── test_operations.py │ │ ├── models.py │ │ ├── mysql │ │ │ ├── __init__.py │ │ │ ├── test_creation.py │ │ │ ├── test_features.py │ │ │ ├── test_schema.py │ │ │ └── tests.py │ │ ├── oracle │ │ │ ├── __init__.py │ │ │ ├── test_creation.py │ │ │ ├── test_introspection.py │ │ │ ├── test_operations.py │ │ │ └── tests.py │ │ ├── postgresql │ │ │ ├── __init__.py │ │ │ ├── test_creation.py │ │ │ ├── test_introspection.py │ │ │ ├── test_server_side_cursors.py │ │ │ └── tests.py │ │ ├── sqlite │ │ │ ├── __init__.py │ │ │ ├── test_introspection.py │ │ │ └── tests.py │ │ ├── test_ddl_references.py │ │ ├── test_utils.py │ │ └── tests.py │ ├── base │ │ ├── __init__.py │ │ └── models.py │ ├── bash_completion │ │ ├── __init__.py │ │ ├── management │ │ │ └── commands │ │ │ │ └── test_command.py │ │ └── tests.py │ ├── basic │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── builtin_server │ │ ├── __init__.py │ │ └── tests.py │ ├── bulk_create │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── cache │ │ ├── __init__.py │ │ ├── closeable_cache.py │ │ ├── liberal_backend.py │ │ ├── models.py │ │ └── tests.py │ ├── check_framework │ │ ├── __init__.py │ │ ├── models.py │ │ ├── test_caches.py │ │ ├── test_database.py │ │ ├── test_model_field_deprecation.py │ │ ├── test_multi_db.py │ │ ├── test_security.py │ │ ├── test_templates.py │ │ ├── test_urls.py │ │ ├── tests.py │ │ └── urls │ │ │ ├── __init__.py │ │ │ ├── beginning_with_slash.py │ │ │ ├── contains_tuple.py │ │ │ ├── include_contains_tuple.py │ │ │ ├── include_with_dollar.py │ │ │ ├── name_with_colon.py │ │ │ ├── no_warnings.py │ │ │ ├── no_warnings_i18n.py │ │ │ ├── non_unique_namespaces.py │ │ │ ├── path_compatibility │ │ │ ├── __init__.py │ │ │ ├── beginning_with_caret.py │ │ │ ├── contains_re_named_group.py │ │ │ └── ending_with_dollar.py │ │ │ ├── unique_namespaces.py │ │ │ └── warning_in_include.py │ ├── choices │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── conditional_processing │ │ ├── __init__.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── constraints │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── contenttypes_tests │ │ ├── __init__.py │ │ ├── models.py │ │ ├── operations_migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_rename_foo.py │ │ │ └── __init__.py │ │ ├── test_checks.py │ │ ├── test_fields.py │ │ ├── test_management.py │ │ ├── test_models.py │ │ ├── test_operations.py │ │ ├── test_order_with_respect_to.py │ │ ├── test_views.py │ │ └── urls.py │ ├── context_processors │ │ ├── __init__.py │ │ ├── models.py │ │ ├── templates │ │ │ └── context_processors │ │ │ │ ├── debug.html │ │ │ │ └── request_attrs.html │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── csrf_tests │ │ ├── __init__.py │ │ ├── csrf_token_error_handler_urls.py │ │ ├── test_context_processor.py │ │ ├── tests.py │ │ └── views.py │ ├── custom_columns │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── custom_lookups │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── custom_managers │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── custom_methods │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── custom_migration_operations │ │ ├── __init__.py │ │ ├── more_operations.py │ │ └── operations.py │ ├── custom_pk │ │ ├── __init__.py │ │ ├── fields.py │ │ ├── models.py │ │ └── tests.py │ ├── datatypes │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── dates │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── datetimes │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── db_functions │ │ ├── __init__.py │ │ ├── math │ │ │ ├── __init__.py │ │ │ ├── test_abs.py │ │ │ ├── test_acos.py │ │ │ ├── test_asin.py │ │ │ ├── test_atan.py │ │ │ ├── test_atan2.py │ │ │ ├── test_ceil.py │ │ │ ├── test_cos.py │ │ │ ├── test_cot.py │ │ │ ├── test_degrees.py │ │ │ ├── test_exp.py │ │ │ ├── test_floor.py │ │ │ ├── test_ln.py │ │ │ ├── test_log.py │ │ │ ├── test_mod.py │ │ │ ├── test_pi.py │ │ │ ├── test_power.py │ │ │ ├── test_radians.py │ │ │ ├── test_round.py │ │ │ ├── test_sin.py │ │ │ ├── test_sqrt.py │ │ │ └── test_tan.py │ │ ├── models.py │ │ ├── test_cast.py │ │ ├── test_chr.py │ │ ├── test_datetime.py │ │ ├── test_left.py │ │ ├── test_ord.py │ │ ├── test_pad.py │ │ ├── test_repeat.py │ │ ├── test_replace.py │ │ ├── test_right.py │ │ ├── test_strindex.py │ │ ├── test_trim.py │ │ ├── test_window.py │ │ └── tests.py │ ├── db_typecasts │ │ ├── __init__.py │ │ └── tests.py │ ├── db_utils │ │ └── tests.py │ ├── dbshell │ │ ├── __init__.py │ │ ├── test_mysql.py │ │ └── test_postgresql_psycopg2.py │ ├── decorators │ │ ├── __init__.py │ │ └── tests.py │ ├── defer │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── defer_regress │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── delete │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── delete_regress │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── deprecation │ │ ├── __init__.py │ │ └── tests.py │ ├── dispatch │ │ ├── __init__.py │ │ └── tests.py │ ├── distinct_on_fields │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── empty │ │ ├── __init__.py │ │ ├── models.py │ │ ├── no_models │ │ │ └── __init__.py │ │ └── tests.py │ ├── expressions │ │ ├── __init__.py │ │ ├── models.py │ │ ├── test_queryset_values.py │ │ └── tests.py │ ├── expressions_case │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── expressions_window │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── extra_regress │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── field_deconstruction │ │ ├── __init__.py │ │ └── tests.py │ ├── field_defaults │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── field_subclassing │ │ ├── __init__.py │ │ ├── fields.py │ │ └── tests.py │ ├── file_storage │ │ ├── __init__.py │ │ ├── models.py │ │ ├── test_generate_filename.py │ │ ├── tests.py │ │ └── urls.py │ ├── file_uploads │ │ ├── __init__.py │ │ ├── models.py │ │ ├── tests.py │ │ ├── uploadhandler.py │ │ ├── urls.py │ │ └── views.py │ ├── files │ │ ├── __init__.py │ │ ├── brokenimg.png │ │ ├── magic.png │ │ ├── test.png │ │ ├── test1.png │ │ └── tests.py │ ├── filtered_relation │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── fixtures │ │ ├── __init__.py │ │ ├── fixtures │ │ │ ├── db_fixture_1.default.json │ │ │ ├── db_fixture_2.default.json.gz │ │ │ ├── db_fixture_3.nosuchdb.json │ │ │ ├── fixture1.json │ │ │ ├── fixture2.json │ │ │ ├── fixture2.xml │ │ │ ├── fixture3.xml │ │ │ ├── fixture4.json.zip │ │ │ ├── fixture5.json.gz │ │ │ ├── fixture5.json.zip │ │ │ ├── fixture6.json │ │ │ ├── fixture7.xml │ │ │ ├── fixture8.json │ │ │ ├── fixture9.xml │ │ │ ├── fixture_with[special]chars.json │ │ │ ├── forward_reference_fk.json │ │ │ ├── forward_reference_m2m.json │ │ │ ├── invalid.json │ │ │ └── null_character_in_field_value.json │ │ ├── models.py │ │ └── tests.py │ ├── fixtures_model_package │ │ ├── __init__.py │ │ ├── fixtures │ │ │ ├── fixture1.json │ │ │ ├── fixture2.json │ │ │ └── fixture2.xml │ │ ├── models │ │ │ └── __init__.py │ │ └── tests.py │ ├── fixtures_regress │ │ ├── __init__.py │ │ ├── fixtures │ │ │ ├── absolute.json │ │ │ ├── animal.xml │ │ │ ├── bad_fixture1.unkn │ │ │ ├── bad_fixture2.xml │ │ │ ├── big-fixture.json │ │ │ ├── empty.json │ │ │ ├── feature.json │ │ │ ├── forward_ref.json │ │ │ ├── forward_ref_bad_data.json │ │ │ ├── forward_ref_lookup.json │ │ │ ├── m2mtoself.json │ │ │ ├── model-inheritance.json │ │ │ ├── nk-inheritance.json │ │ │ ├── nk-inheritance2.xml │ │ │ ├── non_natural_1.json │ │ │ ├── non_natural_2.xml │ │ │ ├── path.containing.dots.json │ │ │ ├── pretty.xml │ │ │ ├── sequence.json │ │ │ ├── sequence_extra.json │ │ │ ├── sequence_extra_xml.xml │ │ │ ├── special-article.json │ │ │ └── thingy.json │ │ ├── fixtures_1 │ │ │ ├── forward_ref_1.json │ │ │ └── inner │ │ │ │ └── absolute.json │ │ ├── fixtures_2 │ │ │ └── forward_ref_2.json │ │ ├── models.py │ │ └── tests.py │ ├── flatpages_tests │ │ ├── __init__.py │ │ ├── settings.py │ │ ├── templates │ │ │ ├── flatpages │ │ │ │ └── default.html │ │ │ └── registration │ │ │ │ └── login.html │ │ ├── test_csrf.py │ │ ├── test_forms.py │ │ ├── test_middleware.py │ │ ├── test_models.py │ │ ├── test_sitemaps.py │ │ ├── test_templatetags.py │ │ ├── test_views.py │ │ └── urls.py │ ├── force_insert_update │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── foreign_object │ │ ├── __init__.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── article.py │ │ │ ├── customers.py │ │ │ ├── empty_join.py │ │ │ └── person.py │ │ ├── test_agnostic_order_trimjoin.py │ │ ├── test_empty_join.py │ │ ├── test_forms.py │ │ └── tests.py │ ├── forms_tests │ │ ├── __init__.py │ │ ├── field_tests │ │ │ ├── __init__.py │ │ │ ├── filepathfield_test_dir │ │ │ │ ├── README │ │ │ │ ├── __init__.py │ │ │ │ ├── a.py │ │ │ │ ├── ab.py │ │ │ │ ├── b.py │ │ │ │ ├── c │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── d.py │ │ │ │ │ ├── e.py │ │ │ │ │ └── f │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── g.py │ │ │ │ ├── h │ │ │ │ │ └── __init__.py │ │ │ │ └── j │ │ │ │ │ └── __init__.py │ │ │ ├── test_base.py │ │ │ ├── test_booleanfield.py │ │ │ ├── test_charfield.py │ │ │ ├── test_choicefield.py │ │ │ ├── test_combofield.py │ │ │ ├── test_datefield.py │ │ │ ├── test_datetimefield.py │ │ │ ├── test_decimalfield.py │ │ │ ├── test_durationfield.py │ │ │ ├── test_emailfield.py │ │ │ ├── test_filefield.py │ │ │ ├── test_filepathfield.py │ │ │ ├── test_floatfield.py │ │ │ ├── test_genericipaddressfield.py │ │ │ ├── test_imagefield.py │ │ │ ├── test_integerfield.py │ │ │ ├── test_multiplechoicefield.py │ │ │ ├── test_multivaluefield.py │ │ │ ├── test_nullbooleanfield.py │ │ │ ├── test_regexfield.py │ │ │ ├── test_slugfield.py │ │ │ ├── test_splitdatetimefield.py │ │ │ ├── test_timefield.py │ │ │ ├── test_typedchoicefield.py │ │ │ ├── test_typedmultiplechoicefield.py │ │ │ ├── test_urlfield.py │ │ │ └── test_uuidfield.py │ │ ├── jinja2 │ │ │ └── forms_tests │ │ │ │ └── custom_widget.html │ │ ├── models.py │ │ ├── templates │ │ │ └── forms_tests │ │ │ │ ├── article_form.html │ │ │ │ └── custom_widget.html │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── filepath_test_files │ │ │ │ ├── .dot-file │ │ │ │ ├── 1x1.bmp │ │ │ │ ├── 1x1.png │ │ │ │ ├── directory │ │ │ │ │ └── .keep │ │ │ │ ├── fake-image.jpg │ │ │ │ └── real-text-file.txt │ │ │ ├── test_error_messages.py │ │ │ ├── test_forms.py │ │ │ ├── test_formsets.py │ │ │ ├── test_i18n.py │ │ │ ├── test_input_formats.py │ │ │ ├── test_media.py │ │ │ ├── test_renderers.py │ │ │ ├── test_utils.py │ │ │ ├── test_validators.py │ │ │ ├── test_widgets.py │ │ │ └── tests.py │ │ ├── urls.py │ │ ├── views.py │ │ └── widget_tests │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── test_checkboxinput.py │ │ │ ├── test_checkboxselectmultiple.py │ │ │ ├── test_clearablefileinput.py │ │ │ ├── test_dateinput.py │ │ │ ├── test_datetimeinput.py │ │ │ ├── test_fileinput.py │ │ │ ├── test_hiddeninput.py │ │ │ ├── test_input.py │ │ │ ├── test_multiplehiddeninput.py │ │ │ ├── test_multiwidget.py │ │ │ ├── test_nullbooleanselect.py │ │ │ ├── test_numberinput.py │ │ │ ├── test_passwordinput.py │ │ │ ├── test_radioselect.py │ │ │ ├── test_select.py │ │ │ ├── test_selectdatewidget.py │ │ │ ├── test_selectmultiple.py │ │ │ ├── test_splitdatetimewidget.py │ │ │ ├── test_splithiddendatetimewidget.py │ │ │ ├── test_textarea.py │ │ │ ├── test_textinput.py │ │ │ ├── test_timeinput.py │ │ │ └── test_widget.py │ ├── from_db_value │ │ ├── __init__.py │ │ ├── models.py │ │ ├── test_deprecated.py │ │ └── tests.py │ ├── generic_inline_admin │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── models.py │ │ ├── tests.py │ │ └── urls.py │ ├── generic_relations │ │ ├── __init__.py │ │ ├── models.py │ │ ├── test_forms.py │ │ └── tests.py │ ├── generic_relations_regress │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── generic_views │ │ ├── __init__.py │ │ ├── forms.py │ │ ├── jinja2 │ │ │ └── generic_views │ │ │ │ └── using.html │ │ ├── models.py │ │ ├── templates │ │ │ ├── generic_views │ │ │ │ ├── about.html │ │ │ │ ├── apple_detail.html │ │ │ │ ├── artist_detail.html │ │ │ │ ├── artist_form.html │ │ │ │ ├── author_confirm_delete.html │ │ │ │ ├── author_detail.html │ │ │ │ ├── author_form.html │ │ │ │ ├── author_list.html │ │ │ │ ├── author_objects.html │ │ │ │ ├── author_view.html │ │ │ │ ├── book_archive.html │ │ │ │ ├── book_archive_day.html │ │ │ │ ├── book_archive_month.html │ │ │ │ ├── book_archive_week.html │ │ │ │ ├── book_archive_year.html │ │ │ │ ├── book_detail.html │ │ │ │ ├── book_list.html │ │ │ │ ├── confirm_delete.html │ │ │ │ ├── detail.html │ │ │ │ ├── form.html │ │ │ │ ├── list.html │ │ │ │ ├── page_template.html │ │ │ │ ├── robots.txt │ │ │ │ └── using.html │ │ │ └── registration │ │ │ │ └── login.html │ │ ├── test_base.py │ │ ├── test_dates.py │ │ ├── test_detail.py │ │ ├── test_edit.py │ │ ├── test_list.py │ │ ├── urls.py │ │ └── views.py │ ├── get_earliest_or_latest │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── get_object_or_404 │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── get_or_create │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── gis_tests │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── data │ │ │ ├── __init__.py │ │ │ ├── ch-city │ │ │ │ ├── ch-city.dbf │ │ │ │ ├── ch-city.prj │ │ │ │ ├── ch-city.shp │ │ │ │ └── ch-city.shx │ │ │ ├── cities │ │ │ │ ├── cities.dbf │ │ │ │ ├── cities.prj │ │ │ │ ├── cities.shp │ │ │ │ └── cities.shx │ │ │ ├── counties │ │ │ │ ├── counties.dbf │ │ │ │ ├── counties.shp │ │ │ │ └── counties.shx │ │ │ ├── gas_lines │ │ │ │ ├── gas_leitung.dbf │ │ │ │ ├── gas_leitung.prj │ │ │ │ ├── gas_leitung.shp │ │ │ │ └── gas_leitung.shx │ │ │ ├── geometries.json │ │ │ ├── interstates │ │ │ │ ├── interstates.dbf │ │ │ │ ├── interstates.prj │ │ │ │ ├── interstates.shp │ │ │ │ └── interstates.shx │ │ │ ├── invalid │ │ │ │ ├── emptypoints.dbf │ │ │ │ ├── emptypoints.shp │ │ │ │ └── emptypoints.shx │ │ │ ├── rasters │ │ │ │ ├── __init__.py │ │ │ │ ├── raster.numpy.txt │ │ │ │ ├── raster.tif │ │ │ │ └── textrasters.py │ │ │ ├── test_point │ │ │ │ ├── test_point.dbf │ │ │ │ ├── test_point.prj │ │ │ │ ├── test_point.shp │ │ │ │ └── test_point.shx │ │ │ ├── test_poly │ │ │ │ ├── test_poly.dbf │ │ │ │ ├── test_poly.prj │ │ │ │ ├── test_poly.shp │ │ │ │ └── test_poly.shx │ │ │ ├── test_vrt │ │ │ │ ├── test_vrt.csv │ │ │ │ └── test_vrt.vrt │ │ │ └── texas.dbf │ │ ├── distapp │ │ │ ├── __init__.py │ │ │ ├── fixtures │ │ │ │ └── initial.json │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── gdal_tests │ │ │ ├── __init__.py │ │ │ ├── test_driver.py │ │ │ ├── test_ds.py │ │ │ ├── test_envelope.py │ │ │ ├── test_geom.py │ │ │ ├── test_raster.py │ │ │ └── test_srs.py │ │ ├── geo3d │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ ├── tests.py │ │ │ └── views.py │ │ ├── geoadmin │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ ├── models.py │ │ │ ├── tests.py │ │ │ └── urls.py │ │ ├── geoapp │ │ │ ├── __init__.py │ │ │ ├── feeds.py │ │ │ ├── fixtures │ │ │ │ └── initial.json.gz │ │ │ ├── models.py │ │ │ ├── sitemaps.py │ │ │ ├── test_expressions.py │ │ │ ├── test_feeds.py │ │ │ ├── test_functions.py │ │ │ ├── test_regress.py │ │ │ ├── test_serializers.py │ │ │ ├── test_sitemaps.py │ │ │ ├── tests.py │ │ │ └── urls.py │ │ ├── geogapp │ │ │ ├── __init__.py │ │ │ ├── fixtures │ │ │ │ └── initial.json │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── geos_tests │ │ │ ├── __init__.py │ │ │ ├── test_coordseq.py │ │ │ ├── test_geos.py │ │ │ ├── test_geos_mutation.py │ │ │ ├── test_io.py │ │ │ └── test_mutable_list.py │ │ ├── gis_migrations │ │ │ ├── __init__.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ └── __init__.py │ │ │ ├── test_commands.py │ │ │ └── test_operations.py │ │ ├── inspectapp │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── layermap │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── maps │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── rasterapp │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── test_rasterfield.py │ │ ├── relatedapp │ │ │ ├── __init__.py │ │ │ ├── fixtures │ │ │ │ └── initial.json │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── test_data.py │ │ ├── test_fields.py │ │ ├── test_geoforms.py │ │ ├── test_geoip2.py │ │ ├── test_gis_tests_utils.py │ │ ├── test_measure.py │ │ ├── test_ptr.py │ │ ├── test_spatialrefsys.py │ │ ├── tests.py │ │ └── utils.py │ ├── handlers │ │ ├── __init__.py │ │ ├── templates │ │ │ └── test_handler.html │ │ ├── test_exception.py │ │ ├── tests.py │ │ ├── tests_custom_error_handlers.py │ │ ├── urls.py │ │ └── views.py │ ├── httpwrappers │ │ ├── __init__.py │ │ ├── abc.txt │ │ └── tests.py │ ├── humanize_tests │ │ ├── __init__.py │ │ └── tests.py │ ├── i18n │ │ ├── __init__.py │ │ ├── commands │ │ │ ├── __init__.py │ │ │ ├── app_with_locale │ │ │ │ └── locale │ │ │ │ │ └── ru │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── code.sample │ │ │ ├── ignore_dir │ │ │ │ └── ignored.html │ │ │ ├── javascript.js │ │ │ ├── locale │ │ │ │ ├── en │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es_AR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ └── django.po │ │ │ │ ├── fr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ └── django.po │ │ │ │ ├── hr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ └── django.po │ │ │ │ ├── ja │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ └── django.po │ │ │ │ ├── ko │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ └── django.po │ │ │ │ ├── pt_BR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ └── django.pristine │ │ │ │ ├── ru │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ └── django.po │ │ │ │ └── xxx │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── media_root │ │ │ │ └── media_ignored.html │ │ │ ├── not_utf8.sample │ │ │ ├── someapp │ │ │ │ └── static │ │ │ │ │ └── javascript.js │ │ │ ├── static │ │ │ │ ├── javascript_ignored.js │ │ │ │ └── static_ignored.html │ │ │ └── templates │ │ │ │ ├── comments.thtml │ │ │ │ ├── empty.html │ │ │ │ ├── plural.djtpl │ │ │ │ ├── subdir │ │ │ │ └── ignored.html │ │ │ │ ├── template_with_error.tpl │ │ │ │ ├── test.html │ │ │ │ └── xxx_ignored.html │ │ ├── contenttypes │ │ │ ├── __init__.py │ │ │ ├── locale │ │ │ │ ├── en │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ └── fr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ └── tests.py │ │ ├── exclude │ │ │ ├── __init__.py │ │ │ └── canned_locale │ │ │ │ ├── en │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ │ ├── fr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ │ └── it │ │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── forms.py │ │ ├── models.py │ │ ├── other │ │ │ ├── __init__.py │ │ │ └── locale │ │ │ │ ├── __init__.py │ │ │ │ ├── de │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ │ └── fr │ │ │ │ ├── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ ├── other2 │ │ │ ├── __init__.py │ │ │ └── locale │ │ │ │ ├── __init__.py │ │ │ │ └── de │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ ├── patterns │ │ │ ├── __init__.py │ │ │ ├── locale │ │ │ │ ├── en │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── nl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ └── pt_BR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── templates │ │ │ │ ├── 404.html │ │ │ │ └── dummy.html │ │ │ ├── tests.py │ │ │ └── urls │ │ │ │ ├── __init__.py │ │ │ │ ├── default.py │ │ │ │ ├── disabled.py │ │ │ │ ├── included.py │ │ │ │ ├── namespace.py │ │ │ │ ├── path_unused.py │ │ │ │ ├── wrong.py │ │ │ │ └── wrong_namespace.py │ │ ├── project_dir │ │ │ ├── __init__.py │ │ │ ├── app_no_locale │ │ │ │ ├── __init__.py │ │ │ │ └── models.py │ │ │ ├── app_with_locale │ │ │ │ ├── __init__.py │ │ │ │ ├── locale │ │ │ │ │ └── .gitkeep │ │ │ │ └── models.py │ │ │ └── project_locale │ │ │ │ └── .gitkeep │ │ ├── resolution │ │ │ ├── __init__.py │ │ │ └── locale │ │ │ │ └── de │ │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── sampleproject │ │ │ ├── locale │ │ │ │ └── fr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── manage.py │ │ │ ├── sampleproject │ │ │ │ ├── __init__.py │ │ │ │ └── settings.py │ │ │ ├── templates │ │ │ │ └── percents.html │ │ │ └── update_catalogs.py │ │ ├── territorial_fallback │ │ │ ├── __init__.py │ │ │ └── locale │ │ │ │ ├── de │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ └── de_DE │ │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── test_compilation.py │ │ ├── test_extraction.py │ │ ├── test_management.py │ │ ├── test_percents.py │ │ ├── tests.py │ │ ├── urls.py │ │ ├── urls_default_unprefixed.py │ │ └── utils.py │ ├── import_error_package │ │ └── __init__.py │ ├── indexes │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── inline_formsets │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── inspectdb │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── introspection │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── invalid_models_tests │ │ ├── __init__.py │ │ ├── test_backend_specific.py │ │ ├── test_custom_fields.py │ │ ├── test_deprecated_fields.py │ │ ├── test_models.py │ │ ├── test_ordinary_fields.py │ │ └── test_relative_fields.py │ ├── known_related_objects │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── logging_tests │ │ ├── __init__.py │ │ ├── logconfig.py │ │ ├── tests.py │ │ ├── urls.py │ │ ├── urls_i18n.py │ │ └── views.py │ ├── lookup │ │ ├── __init__.py │ │ ├── models.py │ │ ├── test_decimalfield.py │ │ ├── test_lookups.py │ │ ├── test_timefield.py │ │ └── tests.py │ ├── m2m_and_m2o │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── m2m_intermediary │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── m2m_multiple │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── m2m_recursive │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── m2m_regress │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── m2m_signals │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── m2m_through │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── m2m_through_regress │ │ ├── __init__.py │ │ ├── fixtures │ │ │ └── m2m_through.json │ │ ├── models.py │ │ ├── test_multitable.py │ │ └── tests.py │ ├── m2o_recursive │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── mail │ │ ├── __init__.py │ │ ├── attachments │ │ │ ├── file.eml │ │ │ ├── file.png │ │ │ ├── file.txt │ │ │ ├── file_png │ │ │ ├── file_png.txt │ │ │ ├── file_txt │ │ │ └── file_txt.png │ │ ├── custombackend.py │ │ ├── test_sendtestemail.py │ │ └── tests.py │ ├── managers_regress │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── many_to_many │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── many_to_one │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── many_to_one_null │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── max_lengths │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── messages_tests │ │ ├── __init__.py │ │ ├── base.py │ │ ├── test_api.py │ │ ├── test_cookie.py │ │ ├── test_fallback.py │ │ ├── test_middleware.py │ │ ├── test_mixins.py │ │ ├── test_session.py │ │ └── urls.py │ ├── middleware │ │ ├── __init__.py │ │ ├── cond_get_urls.py │ │ ├── extra_urls.py │ │ ├── test_security.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── middleware_exceptions │ │ ├── __init__.py │ │ ├── middleware.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── migrate_signals │ │ ├── __init__.py │ │ ├── custom_migrations │ │ │ ├── 0001_initial.py │ │ │ └── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── migration_test_data_persistence │ │ ├── __init__.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_add_book.py │ │ │ └── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── migrations │ │ ├── __init__.py │ │ ├── deprecated_field_migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_remove_ipaddressfield_ip.py │ │ │ └── __init__.py │ │ ├── faulty_migrations │ │ │ ├── __init__.py │ │ │ ├── file.py │ │ │ └── namespace │ │ │ │ └── foo │ │ │ │ └── __init__.py │ │ ├── migrations_test_apps │ │ │ ├── __init__.py │ │ │ ├── alter_fk │ │ │ │ ├── __init__.py │ │ │ │ ├── author_app │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── migrations │ │ │ │ │ │ ├── 0001_initial.py │ │ │ │ │ │ ├── 0002_alter_id.py │ │ │ │ │ │ └── __init__.py │ │ │ │ └── book_app │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── migrations │ │ │ │ │ ├── 0001_initial.py │ │ │ │ │ └── __init__.py │ │ │ ├── conflicting_app_with_dependencies │ │ │ │ ├── __init__.py │ │ │ │ └── migrations │ │ │ │ │ ├── 0001_initial.py │ │ │ │ │ ├── 0002_conflicting_second.py │ │ │ │ │ ├── 0002_second.py │ │ │ │ │ └── __init__.py │ │ │ ├── lookuperror_a │ │ │ │ ├── __init__.py │ │ │ │ ├── migrations │ │ │ │ │ ├── 0001_initial.py │ │ │ │ │ ├── 0002_a2.py │ │ │ │ │ ├── 0003_a3.py │ │ │ │ │ ├── 0004_a4.py │ │ │ │ │ └── __init__.py │ │ │ │ └── models.py │ │ │ ├── lookuperror_b │ │ │ │ ├── __init__.py │ │ │ │ ├── migrations │ │ │ │ │ ├── 0001_initial.py │ │ │ │ │ ├── 0002_b2.py │ │ │ │ │ ├── 0003_b3.py │ │ │ │ │ └── __init__.py │ │ │ │ └── models.py │ │ │ ├── lookuperror_c │ │ │ │ ├── __init__.py │ │ │ │ ├── migrations │ │ │ │ │ ├── 0001_initial.py │ │ │ │ │ ├── 0002_c2.py │ │ │ │ │ ├── 0003_c3.py │ │ │ │ │ └── __init__.py │ │ │ │ └── models.py │ │ │ ├── migrated_app │ │ │ │ ├── __init__.py │ │ │ │ ├── migrations │ │ │ │ │ ├── 0001_initial.py │ │ │ │ │ └── __init__.py │ │ │ │ └── models.py │ │ │ ├── migrated_unapplied_app │ │ │ │ ├── __init__.py │ │ │ │ ├── migrations │ │ │ │ │ ├── 0001_initial.py │ │ │ │ │ └── __init__.py │ │ │ │ └── models.py │ │ │ ├── mutate_state_a │ │ │ │ ├── __init__.py │ │ │ │ └── migrations │ │ │ │ │ ├── 0001_initial.py │ │ │ │ │ └── __init__.py │ │ │ ├── mutate_state_b │ │ │ │ ├── __init__.py │ │ │ │ └── migrations │ │ │ │ │ ├── 0001_initial.py │ │ │ │ │ ├── 0002_add_field.py │ │ │ │ │ └── __init__.py │ │ │ ├── normal │ │ │ │ └── __init__.py │ │ │ ├── unmigrated_app │ │ │ │ ├── __init__.py │ │ │ │ └── models.py │ │ │ ├── unmigrated_app_syncdb │ │ │ │ ├── __init__.py │ │ │ │ └── models.py │ │ │ ├── unspecified_app_with_conflict │ │ │ │ ├── __init__.py │ │ │ │ ├── migrations │ │ │ │ │ ├── 0001_initial.py │ │ │ │ │ ├── 0002_conflicting_second.py │ │ │ │ │ ├── 0002_second.py │ │ │ │ │ └── __init__.py │ │ │ │ └── models.py │ │ │ ├── with_package_model │ │ │ │ ├── __init__.py │ │ │ │ └── models │ │ │ │ │ └── __init__.py │ │ │ └── without_init_file │ │ │ │ ├── __init__.py │ │ │ │ └── migrations │ │ │ │ └── .keep │ │ ├── models.py │ │ ├── related_models_app │ │ │ └── __init__.py │ │ ├── routers.py │ │ ├── test_add_many_to_many_field_initial │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_initial.py │ │ │ └── __init__.py │ │ ├── test_auto_now_add │ │ │ ├── 0001_initial.py │ │ │ └── __init__.py │ │ ├── test_autodetector.py │ │ ├── test_base.py │ │ ├── test_commands.py │ │ ├── test_deprecated_fields.py │ │ ├── test_exceptions.py │ │ ├── test_executor.py │ │ ├── test_graph.py │ │ ├── test_loader.py │ │ ├── test_migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_second.py │ │ │ └── __init__.py │ │ ├── test_migrations_atomic_operation │ │ │ ├── 0001_initial.py │ │ │ └── __init__.py │ │ ├── test_migrations_backwards_deps_1 │ │ │ ├── 0001_initial.py │ │ │ └── 0002_second.py │ │ ├── test_migrations_bad_pyc │ │ │ ├── 0001_initial.pyc-tpl │ │ │ └── __init__.py │ │ ├── test_migrations_clashing_prefix │ │ │ ├── __init__.py │ │ │ ├── a.py │ │ │ └── ab.py │ │ ├── test_migrations_conflict │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_conflicting_second.py │ │ │ ├── 0002_second.py │ │ │ └── __init__.py │ │ ├── test_migrations_custom_user │ │ │ ├── 0001_initial.py │ │ │ └── __init__.py │ │ ├── test_migrations_empty │ │ │ └── __init__.py │ │ ├── test_migrations_fake_split_initial │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_second.py │ │ │ └── __init__.py │ │ ├── test_migrations_first │ │ │ ├── __init__.py │ │ │ ├── second.py │ │ │ └── thefirst.py │ │ ├── test_migrations_initial_false │ │ │ ├── 0001_not_initial.py │ │ │ └── __init__.py │ │ ├── test_migrations_no_ancestor │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_conflicting_second.py │ │ │ ├── 0002_second.py │ │ │ └── __init__.py │ │ ├── test_migrations_no_changes │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_second.py │ │ │ ├── 0003_third.py │ │ │ └── __init__.py │ │ ├── test_migrations_no_default │ │ │ ├── 0001_initial.py │ │ │ └── __init__.py │ │ ├── test_migrations_no_init │ │ │ └── .gitkeep │ │ ├── test_migrations_non_atomic │ │ │ ├── 0001_initial.py │ │ │ └── __init__.py │ │ ├── test_migrations_order │ │ │ ├── 0001.py │ │ │ └── __init__.py │ │ ├── test_migrations_plan │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_second.py │ │ │ ├── 0003_third.py │ │ │ ├── 0004_fourth.py │ │ │ └── __init__.py │ │ ├── test_migrations_run_before │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_second.py │ │ │ ├── 0003_third.py │ │ │ └── __init__.py │ │ ├── test_migrations_squashed │ │ │ ├── 0001_initial.py │ │ │ ├── 0001_squashed_0002.py │ │ │ ├── 0002_second.py │ │ │ └── __init__.py │ │ ├── test_migrations_squashed_complex │ │ │ ├── 1_auto.py │ │ │ ├── 2_auto.py │ │ │ ├── 3_auto.py │ │ │ ├── 3_squashed_5.py │ │ │ ├── 4_auto.py │ │ │ ├── 5_auto.py │ │ │ ├── 6_auto.py │ │ │ ├── 7_auto.py │ │ │ └── __init__.py │ │ ├── test_migrations_squashed_complex_multi_apps │ │ │ ├── __init__.py │ │ │ ├── app1 │ │ │ │ ├── 1_auto.py │ │ │ │ ├── 2_auto.py │ │ │ │ ├── 2_squashed_3.py │ │ │ │ ├── 3_auto.py │ │ │ │ ├── 4_auto.py │ │ │ │ └── __init__.py │ │ │ └── app2 │ │ │ │ ├── 1_auto.py │ │ │ │ ├── 1_squashed_2.py │ │ │ │ ├── 2_auto.py │ │ │ │ └── __init__.py │ │ ├── test_migrations_squashed_erroneous │ │ │ ├── 1_auto.py │ │ │ ├── 2_auto.py │ │ │ ├── 3_squashed_5.py │ │ │ ├── 6_auto.py │ │ │ ├── 7_auto.py │ │ │ └── __init__.py │ │ ├── test_migrations_squashed_extra │ │ │ ├── 0001_initial.py │ │ │ ├── 0001_squashed_0002.py │ │ │ ├── 0002_second.py │ │ │ ├── 0003_third.py │ │ │ └── __init__.py │ │ ├── test_migrations_squashed_ref_squashed │ │ │ ├── __init__.py │ │ │ ├── app1 │ │ │ │ ├── 1_auto.py │ │ │ │ ├── 2_auto.py │ │ │ │ ├── 2_squashed_3.py │ │ │ │ ├── 3_auto.py │ │ │ │ ├── 4_auto.py │ │ │ │ └── __init__.py │ │ │ └── app2 │ │ │ │ ├── 1_auto.py │ │ │ │ ├── 1_squashed_2.py │ │ │ │ ├── 2_auto.py │ │ │ │ └── __init__.py │ │ ├── test_migrations_unmigdep │ │ │ ├── 0001_initial.py │ │ │ └── __init__.py │ │ ├── test_multidb.py │ │ ├── test_operations.py │ │ ├── test_optimizer.py │ │ ├── test_questioner.py │ │ ├── test_state.py │ │ └── test_writer.py │ ├── migrations2 │ │ ├── __init__.py │ │ ├── models.py │ │ ├── test_migrations_2 │ │ │ ├── 0001_initial.py │ │ │ └── __init__.py │ │ ├── test_migrations_2_first │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_second.py │ │ │ └── __init__.py │ │ └── test_migrations_2_no_deps │ │ │ ├── 0001_initial.py │ │ │ └── __init__.py │ ├── model_fields │ │ ├── 4x8.png │ │ ├── 8x4.png │ │ ├── __init__.py │ │ ├── models.py │ │ ├── test_binaryfield.py │ │ ├── test_booleanfield.py │ │ ├── test_charfield.py │ │ ├── test_datetimefield.py │ │ ├── test_decimalfield.py │ │ ├── test_durationfield.py │ │ ├── test_field_flags.py │ │ ├── test_filefield.py │ │ ├── test_floatfield.py │ │ ├── test_foreignkey.py │ │ ├── test_genericipaddressfield.py │ │ ├── test_imagefield.py │ │ ├── test_integerfield.py │ │ ├── test_manytomanyfield.py │ │ ├── test_promises.py │ │ ├── test_slugfield.py │ │ ├── test_textfield.py │ │ ├── test_uuid.py │ │ └── tests.py │ ├── model_forms │ │ ├── __init__.py │ │ ├── models.py │ │ ├── test.png │ │ ├── test2.png │ │ ├── test_modelchoicefield.py │ │ ├── test_uuid.py │ │ └── tests.py │ ├── model_formsets │ │ ├── __init__.py │ │ ├── models.py │ │ ├── test_uuid.py │ │ └── tests.py │ ├── model_formsets_regress │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── model_indexes │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── model_inheritance │ │ ├── __init__.py │ │ ├── models.py │ │ ├── test_abstract_inheritance.py │ │ └── tests.py │ ├── model_inheritance_regress │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── model_meta │ │ ├── __init__.py │ │ ├── models.py │ │ ├── results.py │ │ ├── test_manager_inheritance_from_future.py │ │ └── tests.py │ ├── model_options │ │ ├── __init__.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── default_related_name.py │ │ │ └── tablespaces.py │ │ ├── test_default_related_name.py │ │ └── test_tablespaces.py │ ├── model_package │ │ ├── __init__.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── article.py │ │ │ └── publication.py │ │ └── tests.py │ ├── model_regress │ │ ├── __init__.py │ │ ├── models.py │ │ ├── test_pickle.py │ │ ├── test_state.py │ │ └── tests.py │ ├── modeladmin │ │ ├── __init__.py │ │ ├── models.py │ │ ├── test_actions.py │ │ ├── test_checks.py │ │ ├── test_has_add_permission_obj_deprecation.py │ │ └── tests.py │ ├── multiple_database │ │ ├── __init__.py │ │ ├── fixtures │ │ │ ├── multidb-common.json │ │ │ ├── multidb.default.json │ │ │ ├── multidb.other.json │ │ │ └── pets.json │ │ ├── models.py │ │ ├── routers.py │ │ └── tests.py │ ├── mutually_referential │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── nested_foreign_keys │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── no_models │ │ ├── __init__.py │ │ └── tests.py │ ├── null_fk │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── null_fk_ordering │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── null_queries │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── one_to_one │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── or_lookups │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── order_with_respect_to │ │ ├── __init__.py │ │ ├── base_tests.py │ │ ├── models.py │ │ └── tests.py │ ├── ordering │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── pagination │ │ ├── __init__.py │ │ ├── custom.py │ │ ├── models.py │ │ └── tests.py │ ├── postgres_tests │ │ ├── __init__.py │ │ ├── array_default_migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_integerarraymodel_field_2.py │ │ │ └── __init__.py │ │ ├── array_index_migrations │ │ │ ├── 0001_initial.py │ │ │ └── __init__.py │ │ ├── fields.py │ │ ├── migrations │ │ │ ├── 0001_setup_extensions.py │ │ │ ├── 0002_create_test_models.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── test_aggregates.py │ │ ├── test_array.py │ │ ├── test_citext.py │ │ ├── test_functions.py │ │ ├── test_hstore.py │ │ ├── test_indexes.py │ │ ├── test_introspection.py │ │ ├── test_json.py │ │ ├── test_ranges.py │ │ ├── test_search.py │ │ ├── test_signals.py │ │ ├── test_trigram.py │ │ └── test_unaccent.py │ ├── prefetch_related │ │ ├── __init__.py │ │ ├── models.py │ │ ├── test_prefetch_related_objects.py │ │ ├── test_uuid.py │ │ └── tests.py │ ├── project_template │ │ ├── __init__.py │ │ ├── test_settings.py │ │ ├── urls.py │ │ └── views.py │ ├── properties │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── proxy_model_inheritance │ │ ├── __init__.py │ │ ├── app1 │ │ │ ├── __init__.py │ │ │ └── models.py │ │ ├── app2 │ │ │ ├── __init__.py │ │ │ └── models.py │ │ ├── models.py │ │ └── tests.py │ ├── proxy_models │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── fixtures │ │ │ └── mypeople.json │ │ ├── models.py │ │ ├── tests.py │ │ └── urls.py │ ├── queries │ │ ├── __init__.py │ │ ├── models.py │ │ ├── test_explain.py │ │ ├── test_iterator.py │ │ ├── test_q.py │ │ ├── test_qs_combinators.py │ │ ├── test_query.py │ │ └── tests.py │ ├── queryset_pickle │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── raw_query │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── redirects_tests │ │ ├── __init__.py │ │ ├── tests.py │ │ └── urls.py │ ├── requests │ │ ├── __init__.py │ │ ├── test_data_upload_settings.py │ │ └── tests.py │ ├── requirements │ │ ├── mysql.txt │ │ ├── oracle.txt │ │ ├── postgres.txt │ │ └── py3.txt │ ├── reserved_names │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── resolve_url │ │ ├── __init__.py │ │ ├── models.py │ │ ├── tests.py │ │ └── urls.py │ ├── responses │ │ ├── __init__.py │ │ ├── test_cookie.py │ │ ├── test_fileresponse.py │ │ └── tests.py │ ├── reverse_lookup │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── runtests.py │ ├── save_delete_hooks │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── schema │ │ ├── __init__.py │ │ ├── fields.py │ │ ├── models.py │ │ ├── test_logging.py │ │ └── tests.py │ ├── select_for_update │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── select_related │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── select_related_onetoone │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── select_related_regress │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── serializers │ │ ├── __init__.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── data.py │ │ │ ├── multi_table.py │ │ │ └── natural.py │ │ ├── test_data.py │ │ ├── test_deserializedobject.py │ │ ├── test_json.py │ │ ├── test_natural.py │ │ ├── test_xml.py │ │ ├── test_yaml.py │ │ └── tests.py │ ├── servers │ │ ├── __init__.py │ │ ├── another_app │ │ │ ├── __init__.py │ │ │ └── static │ │ │ │ └── another_app │ │ │ │ └── another_app_static_file.txt │ │ ├── fixtures │ │ │ └── testdata.json │ │ ├── media │ │ │ └── example_media_file.txt │ │ ├── models.py │ │ ├── static │ │ │ └── example_static_file.txt │ │ ├── test_basehttp.py │ │ ├── test_liveserverthread.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── sessions_tests │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── settings_tests │ │ ├── __init__.py │ │ └── tests.py │ ├── shell │ │ ├── __init__.py │ │ └── tests.py │ ├── shortcuts │ │ ├── __init__.py │ │ ├── jinja2 │ │ │ └── shortcuts │ │ │ │ └── using.html │ │ ├── templates │ │ │ └── shortcuts │ │ │ │ ├── render_test.html │ │ │ │ └── using.html │ │ ├── test_render_to_response.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── signals │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── signed_cookies_tests │ │ ├── __init__.py │ │ └── tests.py │ ├── signing │ │ ├── __init__.py │ │ └── tests.py │ ├── sitemaps_tests │ │ ├── __init__.py │ │ ├── base.py │ │ ├── models.py │ │ ├── templates │ │ │ ├── custom_sitemap.xml │ │ │ └── custom_sitemap_index.xml │ │ ├── test_generic.py │ │ ├── test_http.py │ │ ├── test_https.py │ │ ├── test_management.py │ │ ├── test_utils.py │ │ └── urls │ │ │ ├── __init__.py │ │ │ ├── empty.py │ │ │ ├── http.py │ │ │ ├── https.py │ │ │ └── index_only.py │ ├── sites_framework │ │ ├── __init__.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ └── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── sites_tests │ │ ├── __init__.py │ │ └── tests.py │ ├── staticfiles_tests │ │ ├── __init__.py │ │ ├── apps │ │ │ ├── __init__.py │ │ │ ├── no_label │ │ │ │ ├── __init__.py │ │ │ │ └── static │ │ │ │ │ └── file2.txt │ │ │ ├── staticfiles_config.py │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ ├── otherdir │ │ │ │ └── odfile.txt │ │ │ │ └── static │ │ │ │ └── test │ │ │ │ ├── %2F.txt │ │ │ │ ├── .hidden │ │ │ │ ├── CVS │ │ │ │ ├── file.txt │ │ │ │ ├── file1.txt │ │ │ │ ├── nonascii.css │ │ │ │ ├── test.ignoreme │ │ │ │ ├── vendor │ │ │ │ └── module.js │ │ │ │ ├── window.png │ │ │ │ └── ⊗.txt │ │ ├── cases.py │ │ ├── project │ │ │ ├── documents │ │ │ │ ├── absolute_root.css │ │ │ │ ├── cached │ │ │ │ │ ├── absolute.css │ │ │ │ │ ├── css │ │ │ │ │ │ ├── fonts │ │ │ │ │ │ │ ├── font.eot │ │ │ │ │ │ │ └── font.svg │ │ │ │ │ │ ├── fragments.css │ │ │ │ │ │ ├── ignored.css │ │ │ │ │ │ ├── img │ │ │ │ │ │ │ └── window.png │ │ │ │ │ │ └── window.css │ │ │ │ │ ├── img │ │ │ │ │ │ └── relative.png │ │ │ │ │ ├── import.css │ │ │ │ │ ├── other.css │ │ │ │ │ ├── relative.css │ │ │ │ │ ├── styles.css │ │ │ │ │ ├── styles_insensitive.css │ │ │ │ │ ├── test.js │ │ │ │ │ └── url.css │ │ │ │ ├── styles_root.css │ │ │ │ ├── subdir │ │ │ │ │ └── test.txt │ │ │ │ ├── test.txt │ │ │ │ └── test │ │ │ │ │ ├── backup~ │ │ │ │ │ ├── camelCase.txt │ │ │ │ │ └── file.txt │ │ │ ├── faulty │ │ │ │ └── faulty.css │ │ │ ├── loop │ │ │ │ ├── bar.css │ │ │ │ └── foo.css │ │ │ ├── prefixed │ │ │ │ └── test.txt │ │ │ └── site_media │ │ │ │ ├── media │ │ │ │ └── media-file.txt │ │ │ │ └── static │ │ │ │ └── testfile.txt │ │ ├── settings.py │ │ ├── storage.py │ │ ├── test_checks.py │ │ ├── test_finders.py │ │ ├── test_forms.py │ │ ├── test_liveserver.py │ │ ├── test_management.py │ │ ├── test_storage.py │ │ ├── test_templatetag_deprecation.py │ │ ├── test_templatetags.py │ │ ├── test_views.py │ │ └── urls │ │ │ ├── __init__.py │ │ │ ├── default.py │ │ │ └── helper.py │ ├── str │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── string_lookup │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── swappable_models │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── syndication_tests │ │ ├── __init__.py │ │ ├── feeds.py │ │ ├── models.py │ │ ├── templates │ │ │ └── syndication │ │ │ │ ├── description.html │ │ │ │ ├── description_context.html │ │ │ │ ├── title.html │ │ │ │ └── title_context.html │ │ ├── tests.py │ │ └── urls.py │ ├── template_backends │ │ ├── __init__.py │ │ ├── apps │ │ │ ├── __init__.py │ │ │ ├── good │ │ │ │ ├── __init__.py │ │ │ │ └── templatetags │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── empty.py │ │ │ │ │ ├── good_tags.py │ │ │ │ │ ├── override.py │ │ │ │ │ └── subpackage │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── tags.py │ │ │ └── importerror │ │ │ │ ├── __init__.py │ │ │ │ └── templatetags │ │ │ │ ├── __init__.py │ │ │ │ └── broken_tags.py │ │ ├── forbidden │ │ │ └── template_backends │ │ │ │ └── hello.html │ │ ├── jinja2 │ │ │ └── template_backends │ │ │ │ ├── csrf.html │ │ │ │ ├── django_escaping.html │ │ │ │ ├── hello.html │ │ │ │ ├── syntax_error.html │ │ │ │ └── syntax_error2.html │ │ ├── template_strings │ │ │ └── template_backends │ │ │ │ ├── csrf.html │ │ │ │ └── hello.html │ │ ├── templates │ │ │ └── template_backends │ │ │ │ ├── csrf.html │ │ │ │ ├── django_escaping.html │ │ │ │ ├── hello.html │ │ │ │ └── syntax_error.html │ │ ├── test_django.py │ │ ├── test_dummy.py │ │ ├── test_jinja2.py │ │ └── test_utils.py │ ├── template_loader │ │ ├── __init__.py │ │ ├── template_strings │ │ │ └── template_loader │ │ │ │ └── hello.html │ │ ├── templates │ │ │ └── template_loader │ │ │ │ ├── goodbye.html │ │ │ │ ├── hello.html │ │ │ │ └── request.html │ │ └── tests.py │ ├── template_tests │ │ ├── __init__.py │ │ ├── alternate_urls.py │ │ ├── annotated_tag_function.py │ │ ├── broken_tag.py │ │ ├── eggs │ │ │ └── tagsegg.egg │ │ ├── filter_tests │ │ │ ├── __init__.py │ │ │ ├── test_add.py │ │ │ ├── test_addslashes.py │ │ │ ├── test_autoescape.py │ │ │ ├── test_capfirst.py │ │ │ ├── test_center.py │ │ │ ├── test_chaining.py │ │ │ ├── test_cut.py │ │ │ ├── test_date.py │ │ │ ├── test_default.py │ │ │ ├── test_default_if_none.py │ │ │ ├── test_dictsort.py │ │ │ ├── test_dictsortreversed.py │ │ │ ├── test_divisibleby.py │ │ │ ├── test_escape.py │ │ │ ├── test_escapejs.py │ │ │ ├── test_filesizeformat.py │ │ │ ├── test_first.py │ │ │ ├── test_floatformat.py │ │ │ ├── test_force_escape.py │ │ │ ├── test_get_digit.py │ │ │ ├── test_iriencode.py │ │ │ ├── test_join.py │ │ │ ├── test_json_script.py │ │ │ ├── test_last.py │ │ │ ├── test_length.py │ │ │ ├── test_length_is.py │ │ │ ├── test_linebreaks.py │ │ │ ├── test_linebreaksbr.py │ │ │ ├── test_linenumbers.py │ │ │ ├── test_ljust.py │ │ │ ├── test_lower.py │ │ │ ├── test_make_list.py │ │ │ ├── test_phone2numeric.py │ │ │ ├── test_pluralize.py │ │ │ ├── test_random.py │ │ │ ├── test_rjust.py │ │ │ ├── test_safe.py │ │ │ ├── test_safeseq.py │ │ │ ├── test_slice.py │ │ │ ├── test_slugify.py │ │ │ ├── test_stringformat.py │ │ │ ├── test_striptags.py │ │ │ ├── test_time.py │ │ │ ├── test_timesince.py │ │ │ ├── test_timeuntil.py │ │ │ ├── test_title.py │ │ │ ├── test_truncatechars.py │ │ │ ├── test_truncatechars_html.py │ │ │ ├── test_truncatewords.py │ │ │ ├── test_truncatewords_html.py │ │ │ ├── test_unordered_list.py │ │ │ ├── test_upper.py │ │ │ ├── test_urlencode.py │ │ │ ├── test_urlize.py │ │ │ ├── test_urlizetrunc.py │ │ │ ├── test_wordcount.py │ │ │ ├── test_wordwrap.py │ │ │ ├── test_yesno.py │ │ │ └── timezone_utils.py │ │ ├── jinja2 │ │ │ └── template_tests │ │ │ │ └── using.html │ │ ├── other_templates │ │ │ ├── priority │ │ │ │ └── foo.html │ │ │ └── test_dirs.html │ │ ├── recursive_templates │ │ │ ├── fs │ │ │ │ ├── extend-missing.html │ │ │ │ ├── one.html │ │ │ │ ├── other-recursive.html │ │ │ │ ├── recursive.html │ │ │ │ ├── self.html │ │ │ │ ├── three.html │ │ │ │ └── two.html │ │ │ ├── fs2 │ │ │ │ └── recursive.html │ │ │ └── fs3 │ │ │ │ └── recursive.html │ │ ├── relative_templates │ │ │ ├── dir1 │ │ │ │ ├── dir2 │ │ │ │ │ ├── inc1.html │ │ │ │ │ ├── inc2.html │ │ │ │ │ ├── include_content.html │ │ │ │ │ └── one.html │ │ │ │ ├── looped.html │ │ │ │ ├── one.html │ │ │ │ ├── one1.html │ │ │ │ ├── one2.html │ │ │ │ ├── one3.html │ │ │ │ ├── three.html │ │ │ │ └── two.html │ │ │ ├── error_extends.html │ │ │ ├── error_include.html │ │ │ ├── one.html │ │ │ ├── three.html │ │ │ └── two.html │ │ ├── syntax_tests │ │ │ ├── __init__.py │ │ │ ├── i18n │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── test_blocktrans.py │ │ │ │ ├── test_filters.py │ │ │ │ ├── test_get_available_languages.py │ │ │ │ ├── test_get_current_language.py │ │ │ │ ├── test_get_current_language_bidi.py │ │ │ │ ├── test_get_language_info.py │ │ │ │ ├── test_get_language_info_list.py │ │ │ │ ├── test_language.py │ │ │ │ ├── test_trans.py │ │ │ │ └── test_underscore_syntax.py │ │ │ ├── test_autoescape.py │ │ │ ├── test_basic.py │ │ │ ├── test_builtins.py │ │ │ ├── test_cache.py │ │ │ ├── test_comment.py │ │ │ ├── test_cycle.py │ │ │ ├── test_exceptions.py │ │ │ ├── test_extends.py │ │ │ ├── test_filter_syntax.py │ │ │ ├── test_filter_tag.py │ │ │ ├── test_firstof.py │ │ │ ├── test_for.py │ │ │ ├── test_if.py │ │ │ ├── test_if_changed.py │ │ │ ├── test_if_equal.py │ │ │ ├── test_include.py │ │ │ ├── test_invalid_string.py │ │ │ ├── test_list_index.py │ │ │ ├── test_load.py │ │ │ ├── test_lorem.py │ │ │ ├── test_multiline.py │ │ │ ├── test_named_endblock.py │ │ │ ├── test_now.py │ │ │ ├── test_numpy.py │ │ │ ├── test_regroup.py │ │ │ ├── test_resetcycle.py │ │ │ ├── test_setup.py │ │ │ ├── test_simple_tag.py │ │ │ ├── test_spaceless.py │ │ │ ├── test_static.py │ │ │ ├── test_template_tag.py │ │ │ ├── test_url.py │ │ │ ├── test_verbatim.py │ │ │ ├── test_width_ratio.py │ │ │ └── test_with.py │ │ ├── templates │ │ │ ├── 27584_child.html │ │ │ ├── 27584_parent.html │ │ │ ├── 27956_child.html │ │ │ ├── 27956_parent.html │ │ │ ├── broken_base.html │ │ │ ├── first │ │ │ │ └── test.html │ │ │ ├── include_tpl.html │ │ │ ├── included_base.html │ │ │ ├── included_content.html │ │ │ ├── inclusion.html │ │ │ ├── inclusion_base.html │ │ │ ├── inclusion_extends1.html │ │ │ ├── inclusion_extends2.html │ │ │ ├── index.html │ │ │ ├── priority │ │ │ │ └── foo.html │ │ │ ├── recursive_include.html │ │ │ ├── response.html │ │ │ ├── second │ │ │ │ └── test.html │ │ │ ├── ssi include with spaces.html │ │ │ ├── ssi_include.html │ │ │ ├── template_tests │ │ │ │ └── using.html │ │ │ ├── test_context.html │ │ │ ├── test_context_stack.html │ │ │ ├── test_extends_error.html │ │ │ ├── test_incl_tag_use_l10n.html │ │ │ └── test_include_error.html │ │ ├── templatetags │ │ │ ├── __init__.py │ │ │ ├── bad_tag.py │ │ │ ├── custom.py │ │ │ ├── inclusion.py │ │ │ ├── subpackage │ │ │ │ ├── __init__.py │ │ │ │ └── echo.py │ │ │ ├── tag_27584.py │ │ │ └── testtags.py │ │ ├── test_base.py │ │ ├── test_callables.py │ │ ├── test_context.py │ │ ├── test_custom.py │ │ ├── test_engine.py │ │ ├── test_extends.py │ │ ├── test_extends_relative.py │ │ ├── test_library.py │ │ ├── test_loaders.py │ │ ├── test_logging.py │ │ ├── test_nodelist.py │ │ ├── test_origin.py │ │ ├── test_parser.py │ │ ├── test_response.py │ │ ├── test_smartif.py │ │ ├── tests.py │ │ ├── urls.py │ │ ├── utils.py │ │ └── views.py │ ├── templates │ │ ├── base.html │ │ ├── comments │ │ │ └── comment_notification_email.txt │ │ ├── custom_admin │ │ │ ├── add_form.html │ │ │ ├── app_index.html │ │ │ ├── change_form.html │ │ │ ├── change_list.html │ │ │ ├── delete_confirmation.html │ │ │ ├── delete_selected_confirmation.html │ │ │ ├── index.html │ │ │ ├── login.html │ │ │ ├── logout.html │ │ │ ├── object_history.html │ │ │ ├── password_change_done.html │ │ │ ├── password_change_form.html │ │ │ └── popup_response.html │ │ ├── extended.html │ │ ├── form_view.html │ │ ├── login.html │ │ └── views │ │ │ ├── article_archive_day.html │ │ │ ├── article_archive_month.html │ │ │ ├── article_confirm_delete.html │ │ │ ├── article_detail.html │ │ │ ├── article_form.html │ │ │ ├── article_list.html │ │ │ ├── datearticle_archive_month.html │ │ │ ├── urlarticle_detail.html │ │ │ └── urlarticle_form.html │ ├── test_client │ │ ├── __init__.py │ │ ├── auth_backends.py │ │ ├── test_conditional_content_removal.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── test_client_regress │ │ ├── __init__.py │ │ ├── auth_backends.py │ │ ├── bad_templates │ │ │ └── 404.html │ │ ├── context_processors.py │ │ ├── models.py │ │ ├── session.py │ │ ├── templates │ │ │ ├── request_context.html │ │ │ └── unicode.html │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── test_exceptions │ │ ├── __init__.py │ │ └── test_validation_error.py │ ├── test_runner │ │ ├── __init__.py │ │ ├── models.py │ │ ├── runner.py │ │ ├── test_debug_sql.py │ │ ├── test_discover_runner.py │ │ ├── test_parallel.py │ │ └── tests.py │ ├── test_runner_apps │ │ ├── __init__.py │ │ ├── sample │ │ │ ├── __init__.py │ │ │ ├── doctests.py │ │ │ ├── empty.py │ │ │ ├── pattern_tests.py │ │ │ ├── tests │ │ │ │ ├── __init__.py │ │ │ │ └── tests.py │ │ │ └── tests_sample.py │ │ ├── simple │ │ │ ├── __init__.py │ │ │ └── tests.py │ │ └── tagged │ │ │ ├── __init__.py │ │ │ ├── tests.py │ │ │ └── tests_inheritance.py │ ├── test_sqlite.py │ ├── test_utils │ │ ├── __init__.py │ │ ├── fixtures │ │ │ └── should_not_be_loaded.json │ │ ├── models.py │ │ ├── templates │ │ │ └── template_used │ │ │ │ ├── alternative.html │ │ │ │ ├── base.html │ │ │ │ ├── extends.html │ │ │ │ └── include.html │ │ ├── test_testcase.py │ │ ├── test_transactiontestcase.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── timezones │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── forms.py │ │ ├── models.py │ │ ├── tests.py │ │ └── urls.py │ ├── transaction_hooks │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── transactions │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── unmanaged_models │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── update │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── update_only_fields │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── urlpatterns │ │ ├── __init__.py │ │ ├── converter_urls.py │ │ ├── converters.py │ │ ├── path_base64_urls.py │ │ ├── path_dynamic_urls.py │ │ ├── path_urls.py │ │ ├── test_resolvers.py │ │ ├── tests.py │ │ └── views.py │ ├── urlpatterns_reverse │ │ ├── __init__.py │ │ ├── erroneous_urls.py │ │ ├── extra_urls.py │ │ ├── included_app_urls.py │ │ ├── included_named_urls.py │ │ ├── included_named_urls2.py │ │ ├── included_namespace_urls.py │ │ ├── included_no_kwargs_urls.py │ │ ├── included_urls.py │ │ ├── included_urls2.py │ │ ├── method_view_urls.py │ │ ├── middleware.py │ │ ├── named_urls.py │ │ ├── named_urls_conflict.py │ │ ├── namespace_urls.py │ │ ├── nested_urls.py │ │ ├── no_urls.py │ │ ├── nonimported_module.py │ │ ├── reverse_lazy_urls.py │ │ ├── test_localeregexdescriptor.py │ │ ├── tests.py │ │ ├── translations │ │ │ ├── __init__.py │ │ │ └── locale │ │ │ │ ├── __init__.py │ │ │ │ ├── de │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ └── __init__.py │ │ │ │ └── fr │ │ │ │ ├── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ │ │ └── __init__.py │ │ ├── urlconf_inner.py │ │ ├── urlconf_outer.py │ │ ├── urls.py │ │ ├── urls_error_handlers.py │ │ ├── urls_error_handlers_callables.py │ │ ├── urls_without_full_import.py │ │ ├── utils.py │ │ ├── views.py │ │ └── views_broken.py │ ├── urls.py │ ├── user_commands │ │ ├── __init__.py │ │ ├── eggs │ │ │ └── basic.egg │ │ ├── management │ │ │ └── commands │ │ │ │ ├── common_args.py │ │ │ │ ├── dance.py │ │ │ │ ├── hal.py │ │ │ │ ├── no_translations.py │ │ │ │ ├── required_option.py │ │ │ │ ├── reverse_url.py │ │ │ │ ├── set_option.py │ │ │ │ ├── subparser.py │ │ │ │ └── transaction.py │ │ ├── models.py │ │ ├── tests.py │ │ └── urls.py │ ├── utils_tests │ │ ├── __init__.py │ │ ├── archives │ │ │ ├── foobar.tar │ │ │ ├── foobar.tar.bz2 │ │ │ ├── foobar.tar.gz │ │ │ ├── foobar.zip │ │ │ ├── leadpath_foobar.tar │ │ │ ├── leadpath_foobar.tar.bz2 │ │ │ ├── leadpath_foobar.tar.gz │ │ │ └── leadpath_foobar.zip │ │ ├── eggs │ │ │ └── test_egg.egg │ │ ├── files │ │ │ ├── strip_tags1.html │ │ │ └── strip_tags2.txt │ │ ├── locale │ │ │ └── nl │ │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── models.py │ │ ├── test_archive.py │ │ ├── test_autoreload.py │ │ ├── test_baseconv.py │ │ ├── test_crypto.py │ │ ├── test_datastructures.py │ │ ├── test_dateformat.py │ │ ├── test_dateparse.py │ │ ├── test_datetime_safe.py │ │ ├── test_decorators.py │ │ ├── test_duration.py │ │ ├── test_encoding.py │ │ ├── test_feedgenerator.py │ │ ├── test_functional.py │ │ ├── test_html.py │ │ ├── test_http.py │ │ ├── test_inspect.py │ │ ├── test_ipv6.py │ │ ├── test_jslex.py │ │ ├── test_lazyobject.py │ │ ├── test_lorem_ipsum.py │ │ ├── test_module │ │ │ ├── __init__.py │ │ │ ├── another_bad_module.py │ │ │ ├── another_good_module.py │ │ │ ├── bad_module.py │ │ │ ├── child_module │ │ │ │ ├── __init__.py │ │ │ │ └── grandchild_module.py │ │ │ └── good_module.py │ │ ├── test_module_loading.py │ │ ├── test_no_submodule.py │ │ ├── test_numberformat.py │ │ ├── test_os_utils.py │ │ ├── test_regex_helper.py │ │ ├── test_safestring.py │ │ ├── test_simplelazyobject.py │ │ ├── test_termcolors.py │ │ ├── test_text.py │ │ ├── test_timesince.py │ │ ├── test_timezone.py │ │ └── test_tree.py │ ├── validation │ │ ├── __init__.py │ │ ├── models.py │ │ ├── test_custom_messages.py │ │ ├── test_error_messages.py │ │ ├── test_picklable.py │ │ ├── test_unique.py │ │ ├── test_validators.py │ │ └── tests.py │ ├── validators │ │ ├── __init__.py │ │ ├── invalid_urls.txt │ │ ├── tests.py │ │ └── valid_urls.txt │ ├── version │ │ ├── __init__.py │ │ └── tests.py │ ├── view_tests │ │ ├── __init__.py │ │ ├── app0 │ │ │ ├── __init__.py │ │ │ └── locale │ │ │ │ └── en │ │ │ │ └── LC_MESSAGES │ │ │ │ ├── djangojs.mo │ │ │ │ └── djangojs.po │ │ ├── app1 │ │ │ ├── __init__.py │ │ │ └── locale │ │ │ │ └── fr │ │ │ │ └── LC_MESSAGES │ │ │ │ ├── djangojs.mo │ │ │ │ └── djangojs.po │ │ ├── app2 │ │ │ ├── __init__.py │ │ │ └── locale │ │ │ │ └── fr │ │ │ │ └── LC_MESSAGES │ │ │ │ ├── djangojs.mo │ │ │ │ └── djangojs.po │ │ ├── app3 │ │ │ ├── __init__.py │ │ │ └── locale │ │ │ │ └── es_AR │ │ │ │ └── LC_MESSAGES │ │ │ │ ├── djangojs.mo │ │ │ │ └── djangojs.po │ │ ├── app4 │ │ │ ├── __init__.py │ │ │ └── locale │ │ │ │ └── es_AR │ │ │ │ └── LC_MESSAGES │ │ │ │ ├── djangojs.mo │ │ │ │ └── djangojs.po │ │ ├── app5 │ │ │ ├── __init__.py │ │ │ └── locale │ │ │ │ └── fr │ │ │ │ └── LC_MESSAGES │ │ │ │ ├── djangojs.mo │ │ │ │ └── djangojs.po │ │ ├── default_urls.py │ │ ├── generic_urls.py │ │ ├── locale │ │ │ ├── de │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ └── djangojs.po │ │ │ ├── en_GB │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ └── djangojs.po │ │ │ ├── es │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ └── djangojs.po │ │ │ ├── fr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ └── djangojs.po │ │ │ ├── nl │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── pt │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ └── djangojs.po │ │ │ └── ru │ │ │ │ └── LC_MESSAGES │ │ │ │ ├── djangojs.mo │ │ │ │ └── djangojs.po │ │ ├── media │ │ │ ├── %2F.txt │ │ │ ├── file.txt │ │ │ ├── file.txt.gz │ │ │ ├── file.unknown │ │ │ └── long-line.txt │ │ ├── models.py │ │ ├── regression_21530_urls.py │ │ ├── templates │ │ │ ├── debug │ │ │ │ ├── template_error.html │ │ │ │ └── template_exception.html │ │ │ ├── jsi18n-multi-catalogs.html │ │ │ └── jsi18n.html │ │ ├── templatetags │ │ │ ├── __init__.py │ │ │ └── debugtags.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── test_csrf.py │ │ │ ├── test_debug.py │ │ │ ├── test_default_content_type.py │ │ │ ├── test_defaults.py │ │ │ ├── test_i18n.py │ │ │ ├── test_json.py │ │ │ ├── test_specials.py │ │ │ └── test_static.py │ │ ├── urls.py │ │ └── views.py │ └── wsgi │ │ ├── __init__.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── wsgi.py └── tox.ini ├── manage.py ├── python-3.7.0-amd64.exe ├── python-3.7.0.exe └── requirements.txt /.github/workflows/django.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/.github/workflows/django.yml -------------------------------------------------------------------------------- /InvMngSys/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InvMngSys/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/InvMngSys/settings.py -------------------------------------------------------------------------------- /InvMngSys/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/InvMngSys/urls.py -------------------------------------------------------------------------------- /InvMngSys/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/InvMngSys/wsgi.py -------------------------------------------------------------------------------- /Inventory/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Inventory/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/Inventory/admin.py -------------------------------------------------------------------------------- /Inventory/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/Inventory/apps.py -------------------------------------------------------------------------------- /Inventory/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/Inventory/migrations/0001_initial.py -------------------------------------------------------------------------------- /Inventory/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Inventory/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/Inventory/models.py -------------------------------------------------------------------------------- /Inventory/static/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/Inventory/static/css/bootstrap-grid.css -------------------------------------------------------------------------------- /Inventory/static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/Inventory/static/css/bootstrap.css -------------------------------------------------------------------------------- /Inventory/static/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/Inventory/static/css/bootstrap.css.map -------------------------------------------------------------------------------- /Inventory/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/Inventory/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /Inventory/static/jquery-3.3.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/Inventory/static/jquery-3.3.1.min.js -------------------------------------------------------------------------------- /Inventory/static/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/Inventory/static/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /Inventory/static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/Inventory/static/js/bootstrap.js -------------------------------------------------------------------------------- /Inventory/static/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/Inventory/static/js/bootstrap.js.map -------------------------------------------------------------------------------- /Inventory/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/Inventory/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /Inventory/static/logo2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/Inventory/static/logo2.ico -------------------------------------------------------------------------------- /Inventory/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/Inventory/templates/base.html -------------------------------------------------------------------------------- /Inventory/templates/details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/Inventory/templates/details.html -------------------------------------------------------------------------------- /Inventory/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/Inventory/templates/index.html -------------------------------------------------------------------------------- /Inventory/templates/logo2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/Inventory/templates/logo2.ico -------------------------------------------------------------------------------- /Inventory/templates/returnitm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/Inventory/templates/returnitm.html -------------------------------------------------------------------------------- /Inventory/templates/transferitm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/Inventory/templates/transferitm.html -------------------------------------------------------------------------------- /Inventory/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/Inventory/tests.py -------------------------------------------------------------------------------- /Inventory/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/Inventory/urls.py -------------------------------------------------------------------------------- /Inventory/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/Inventory/views.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/README.md -------------------------------------------------------------------------------- /data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/data.csv -------------------------------------------------------------------------------- /data_extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/data_extract.py -------------------------------------------------------------------------------- /db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/db.sqlite3 -------------------------------------------------------------------------------- /django-master/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/.editorconfig -------------------------------------------------------------------------------- /django-master/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/.eslintignore -------------------------------------------------------------------------------- /django-master/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/.eslintrc -------------------------------------------------------------------------------- /django-master/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/.gitattributes -------------------------------------------------------------------------------- /django-master/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/.gitignore -------------------------------------------------------------------------------- /django-master/.hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/.hgignore -------------------------------------------------------------------------------- /django-master/.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/.tx/config -------------------------------------------------------------------------------- /django-master/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/AUTHORS -------------------------------------------------------------------------------- /django-master/CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/CONTRIBUTING.rst -------------------------------------------------------------------------------- /django-master/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/Gruntfile.js -------------------------------------------------------------------------------- /django-master/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/INSTALL -------------------------------------------------------------------------------- /django-master/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/LICENSE -------------------------------------------------------------------------------- /django-master/LICENSE.python: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/LICENSE.python -------------------------------------------------------------------------------- /django-master/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/MANIFEST.in -------------------------------------------------------------------------------- /django-master/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/README.rst -------------------------------------------------------------------------------- /django-master/django/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/django/__init__.py -------------------------------------------------------------------------------- /django-master/django/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/django/__main__.py -------------------------------------------------------------------------------- /django-master/django/apps/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/django/apps/__init__.py -------------------------------------------------------------------------------- /django-master/django/apps/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/django/apps/config.py -------------------------------------------------------------------------------- /django-master/django/apps/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/django/apps/registry.py -------------------------------------------------------------------------------- /django-master/django/conf/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/django/conf/__init__.py -------------------------------------------------------------------------------- /django-master/django/conf/app_template/__init__.py-tpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/conf/app_template/migrations/__init__.py-tpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/conf/app_template/views.py-tpl: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /django-master/django/conf/locale/ar/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/conf/locale/az/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/conf/locale/bg/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/conf/locale/bn/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/conf/locale/bs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/conf/locale/ca/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/conf/locale/cs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/conf/locale/cy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/conf/locale/da/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/conf/locale/de/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/conf/locale/de_CH/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/conf/locale/el/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/conf/locale/en/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/conf/locale/en_AU/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/conf/locale/en_GB/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/conf/locale/eo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/conf/locale/es/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/conf/locale/es_AR/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/conf/locale/es_CO/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/conf/locale/es_MX/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/conf/locale/es_NI/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/conf/locale/es_PR/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/conf/locale/et/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/conf/locale/eu/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/conf/locale/fa/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/conf/locale/fi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/conf/locale/fr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/conf/locale/fy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/conf/locale/ga/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/conf/locale/gd/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/conf/locale/gl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/conf/locale/he/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/conf/locale/hi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/conf/locale/hr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/conf/locale/hu/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/conf/locale/id/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/conf/locale/is/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/conf/locale/it/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/conf/locale/ja/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/conf/locale/ka/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/conf/locale/km/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/conf/locale/kn/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/conf/locale/ko/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/conf/locale/lt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/conf/locale/lv/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/conf/locale/mk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/conf/locale/ml/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/conf/locale/mn/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/conf/locale/nb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/conf/locale/nl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/conf/locale/nn/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/conf/locale/pl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/conf/locale/pt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/conf/locale/pt_BR/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/conf/locale/ro/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/conf/locale/ru/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/conf/locale/sk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/conf/locale/sl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/conf/locale/sq/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/conf/locale/sr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/conf/locale/sr_Latn/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/conf/locale/sv/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/conf/locale/ta/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/conf/locale/te/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/conf/locale/th/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/conf/locale/tr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/conf/locale/uk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/conf/locale/vi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/conf/locale/zh_Hans/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/conf/locale/zh_Hant/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/conf/project_template/project_name/__init__.py-tpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/conf/urls/i18n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/django/conf/urls/i18n.py -------------------------------------------------------------------------------- /django-master/django/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/contrib/admin/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/contrib/admin/templates/admin/widgets/many_to_many_raw_id.html: -------------------------------------------------------------------------------- 1 | {% include 'admin/widgets/foreign_key_raw_id.html' %} 2 | -------------------------------------------------------------------------------- /django-master/django/contrib/admin/templates/admin/widgets/radio.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/multiple_input.html" %} 2 | -------------------------------------------------------------------------------- /django-master/django/contrib/admin/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/contrib/admin/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/contrib/auth/handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/contrib/auth/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/contrib/contenttypes/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/contrib/flatpages/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/contrib/flatpages/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/contrib/gis/db/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/contrib/gis/db/backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/contrib/gis/db/backends/base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/contrib/gis/db/backends/mysql/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/contrib/gis/db/backends/oracle/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/contrib/gis/db/backends/postgis/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/contrib/gis/db/backends/spatialite/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/contrib/gis/gdal/prototypes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/contrib/gis/gdal/raster/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/contrib/gis/ptr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/django/contrib/gis/ptr.py -------------------------------------------------------------------------------- /django-master/django/contrib/gis/serializers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/contrib/humanize/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/contrib/redirects/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/contrib/sessions/backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/contrib/sessions/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/contrib/sites/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/contrib/staticfiles/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/core/cache/backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/core/checks/compatibility/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/core/checks/security/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/core/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/django/core/exceptions.py -------------------------------------------------------------------------------- /django-master/django/core/files/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/django/core/files/base.py -------------------------------------------------------------------------------- /django-master/django/core/files/move.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/django/core/files/move.py -------------------------------------------------------------------------------- /django-master/django/core/files/temp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/django/core/files/temp.py -------------------------------------------------------------------------------- /django-master/django/core/handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/core/mail/backends/__init__.py: -------------------------------------------------------------------------------- 1 | # Mail backends shipped with Django. 2 | -------------------------------------------------------------------------------- /django-master/django/core/mail/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/django/core/mail/utils.py -------------------------------------------------------------------------------- /django-master/django/core/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/django/core/paginator.py -------------------------------------------------------------------------------- /django-master/django/core/servers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/core/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/django/core/signals.py -------------------------------------------------------------------------------- /django-master/django/core/signing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/django/core/signing.py -------------------------------------------------------------------------------- /django-master/django/core/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/django/core/validators.py -------------------------------------------------------------------------------- /django-master/django/core/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/django/core/wsgi.py -------------------------------------------------------------------------------- /django-master/django/db/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/django/db/__init__.py -------------------------------------------------------------------------------- /django-master/django/db/backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/db/backends/base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/db/backends/dummy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/db/backends/mysql/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/db/backends/oracle/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/db/backends/postgresql/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/db/backends/postgresql_psycopg2/base.py: -------------------------------------------------------------------------------- 1 | from ..postgresql.base import * # NOQA 2 | -------------------------------------------------------------------------------- /django-master/django/db/backends/postgresql_psycopg2/client.py: -------------------------------------------------------------------------------- 1 | from ..postgresql.client import * # NOQA 2 | -------------------------------------------------------------------------------- /django-master/django/db/backends/postgresql_psycopg2/creation.py: -------------------------------------------------------------------------------- 1 | from ..postgresql.creation import * # NOQA 2 | -------------------------------------------------------------------------------- /django-master/django/db/backends/postgresql_psycopg2/features.py: -------------------------------------------------------------------------------- 1 | from ..postgresql.features import * # NOQA 2 | -------------------------------------------------------------------------------- /django-master/django/db/backends/postgresql_psycopg2/introspection.py: -------------------------------------------------------------------------------- 1 | from ..postgresql.introspection import * # NOQA 2 | -------------------------------------------------------------------------------- /django-master/django/db/backends/postgresql_psycopg2/operations.py: -------------------------------------------------------------------------------- 1 | from ..postgresql.operations import * # NOQA 2 | -------------------------------------------------------------------------------- /django-master/django/db/backends/postgresql_psycopg2/schema.py: -------------------------------------------------------------------------------- 1 | from ..postgresql.schema import * # NOQA 2 | -------------------------------------------------------------------------------- /django-master/django/db/backends/postgresql_psycopg2/utils.py: -------------------------------------------------------------------------------- 1 | from ..postgresql.utils import * # NOQA 2 | -------------------------------------------------------------------------------- /django-master/django/db/backends/sqlite3/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/db/models/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/django/db/models/base.py -------------------------------------------------------------------------------- /django-master/django/db/models/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/django/db/models/query.py -------------------------------------------------------------------------------- /django-master/django/db/models/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/django/db/models/utils.py -------------------------------------------------------------------------------- /django-master/django/db/transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/django/db/transaction.py -------------------------------------------------------------------------------- /django-master/django/db/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/django/db/utils.py -------------------------------------------------------------------------------- /django-master/django/forms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/django/forms/__init__.py -------------------------------------------------------------------------------- /django-master/django/forms/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/django/forms/fields.py -------------------------------------------------------------------------------- /django-master/django/forms/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/django/forms/forms.py -------------------------------------------------------------------------------- /django-master/django/forms/formsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/django/forms/formsets.py -------------------------------------------------------------------------------- /django-master/django/forms/jinja2/django/forms/widgets/checkbox.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /django-master/django/forms/jinja2/django/forms/widgets/checkbox_option.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input_option.html" %} 2 | -------------------------------------------------------------------------------- /django-master/django/forms/jinja2/django/forms/widgets/checkbox_select.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/multiple_input.html" %} 2 | -------------------------------------------------------------------------------- /django-master/django/forms/jinja2/django/forms/widgets/date.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /django-master/django/forms/jinja2/django/forms/widgets/datetime.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /django-master/django/forms/jinja2/django/forms/widgets/email.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /django-master/django/forms/jinja2/django/forms/widgets/file.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /django-master/django/forms/jinja2/django/forms/widgets/hidden.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /django-master/django/forms/jinja2/django/forms/widgets/number.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /django-master/django/forms/jinja2/django/forms/widgets/password.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /django-master/django/forms/jinja2/django/forms/widgets/radio.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/multiple_input.html" %} 2 | -------------------------------------------------------------------------------- /django-master/django/forms/jinja2/django/forms/widgets/radio_option.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input_option.html" %} 2 | -------------------------------------------------------------------------------- /django-master/django/forms/jinja2/django/forms/widgets/text.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /django-master/django/forms/jinja2/django/forms/widgets/time.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /django-master/django/forms/jinja2/django/forms/widgets/url.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /django-master/django/forms/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/django/forms/models.py -------------------------------------------------------------------------------- /django-master/django/forms/renderers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/django/forms/renderers.py -------------------------------------------------------------------------------- /django-master/django/forms/templates/django/forms/widgets/checkbox.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /django-master/django/forms/templates/django/forms/widgets/checkbox_option.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input_option.html" %} 2 | -------------------------------------------------------------------------------- /django-master/django/forms/templates/django/forms/widgets/checkbox_select.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/multiple_input.html" %} 2 | -------------------------------------------------------------------------------- /django-master/django/forms/templates/django/forms/widgets/date.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /django-master/django/forms/templates/django/forms/widgets/datetime.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /django-master/django/forms/templates/django/forms/widgets/email.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /django-master/django/forms/templates/django/forms/widgets/file.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /django-master/django/forms/templates/django/forms/widgets/hidden.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /django-master/django/forms/templates/django/forms/widgets/number.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /django-master/django/forms/templates/django/forms/widgets/password.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /django-master/django/forms/templates/django/forms/widgets/radio.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/multiple_input.html" %} 2 | -------------------------------------------------------------------------------- /django-master/django/forms/templates/django/forms/widgets/radio_option.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input_option.html" %} 2 | -------------------------------------------------------------------------------- /django-master/django/forms/templates/django/forms/widgets/text.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /django-master/django/forms/templates/django/forms/widgets/time.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /django-master/django/forms/templates/django/forms/widgets/url.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /django-master/django/forms/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/django/forms/utils.py -------------------------------------------------------------------------------- /django-master/django/forms/widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/django/forms/widgets.py -------------------------------------------------------------------------------- /django-master/django/http/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/django/http/__init__.py -------------------------------------------------------------------------------- /django-master/django/http/cookie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/django/http/cookie.py -------------------------------------------------------------------------------- /django-master/django/http/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/django/http/request.py -------------------------------------------------------------------------------- /django-master/django/http/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/django/http/response.py -------------------------------------------------------------------------------- /django-master/django/middleware/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/middleware/csrf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/django/middleware/csrf.py -------------------------------------------------------------------------------- /django-master/django/middleware/gzip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/django/middleware/gzip.py -------------------------------------------------------------------------------- /django-master/django/middleware/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/django/middleware/http.py -------------------------------------------------------------------------------- /django-master/django/shortcuts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/django/shortcuts.py -------------------------------------------------------------------------------- /django-master/django/template/backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/template/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/django/template/base.py -------------------------------------------------------------------------------- /django-master/django/template/engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/django/template/engine.py -------------------------------------------------------------------------------- /django-master/django/template/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/django/template/loader.py -------------------------------------------------------------------------------- /django-master/django/template/loaders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/template/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/django/template/utils.py -------------------------------------------------------------------------------- /django-master/django/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/templatetags/tz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/django/templatetags/tz.py -------------------------------------------------------------------------------- /django-master/django/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/django/test/__init__.py -------------------------------------------------------------------------------- /django-master/django/test/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/django/test/client.py -------------------------------------------------------------------------------- /django-master/django/test/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/django/test/html.py -------------------------------------------------------------------------------- /django-master/django/test/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/django/test/runner.py -------------------------------------------------------------------------------- /django-master/django/test/selenium.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/django/test/selenium.py -------------------------------------------------------------------------------- /django-master/django/test/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/django/test/signals.py -------------------------------------------------------------------------------- /django-master/django/test/testcases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/django/test/testcases.py -------------------------------------------------------------------------------- /django-master/django/test/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/django/test/utils.py -------------------------------------------------------------------------------- /django-master/django/urls/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/django/urls/__init__.py -------------------------------------------------------------------------------- /django-master/django/urls/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/django/urls/base.py -------------------------------------------------------------------------------- /django-master/django/urls/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/django/urls/conf.py -------------------------------------------------------------------------------- /django-master/django/urls/converters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/django/urls/converters.py -------------------------------------------------------------------------------- /django-master/django/urls/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/django/urls/exceptions.py -------------------------------------------------------------------------------- /django-master/django/urls/resolvers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/django/urls/resolvers.py -------------------------------------------------------------------------------- /django-master/django/urls/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/django/urls/utils.py -------------------------------------------------------------------------------- /django-master/django/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/utils/_os.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/django/utils/_os.py -------------------------------------------------------------------------------- /django-master/django/utils/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/django/utils/cache.py -------------------------------------------------------------------------------- /django-master/django/utils/crypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/django/utils/crypto.py -------------------------------------------------------------------------------- /django-master/django/utils/dates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/django/utils/dates.py -------------------------------------------------------------------------------- /django-master/django/utils/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/django/utils/html.py -------------------------------------------------------------------------------- /django-master/django/utils/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/django/utils/http.py -------------------------------------------------------------------------------- /django-master/django/utils/ipv6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/django/utils/ipv6.py -------------------------------------------------------------------------------- /django-master/django/utils/jslex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/django/utils/jslex.py -------------------------------------------------------------------------------- /django-master/django/utils/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/django/utils/log.py -------------------------------------------------------------------------------- /django-master/django/utils/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/django/utils/six.py -------------------------------------------------------------------------------- /django-master/django/utils/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/django/utils/text.py -------------------------------------------------------------------------------- /django-master/django/utils/tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/django/utils/tree.py -------------------------------------------------------------------------------- /django-master/django/views/csrf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/django/views/csrf.py -------------------------------------------------------------------------------- /django-master/django/views/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/django/views/debug.py -------------------------------------------------------------------------------- /django-master/django/views/decorators/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/django/views/i18n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/django/views/i18n.py -------------------------------------------------------------------------------- /django-master/django/views/static.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/django/views/static.py -------------------------------------------------------------------------------- /django-master/docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/docs/Makefile -------------------------------------------------------------------------------- /django-master/docs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/docs/README -------------------------------------------------------------------------------- /django-master/docs/_ext/cve_role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/docs/_ext/cve_role.py -------------------------------------------------------------------------------- /django-master/docs/_theme/djangodocs-epub/static/docicons-behindscenes.png: -------------------------------------------------------------------------------- 1 | ../../djangodocs/static/docicons-behindscenes.png -------------------------------------------------------------------------------- /django-master/docs/_theme/djangodocs-epub/static/docicons-note.png: -------------------------------------------------------------------------------- 1 | ../../djangodocs/static/docicons-note.png -------------------------------------------------------------------------------- /django-master/docs/_theme/djangodocs-epub/static/docicons-philosophy.png: -------------------------------------------------------------------------------- 1 | ../../djangodocs/static/docicons-philosophy.png -------------------------------------------------------------------------------- /django-master/docs/_theme/djangodocs-epub/static/docicons-warning.png: -------------------------------------------------------------------------------- 1 | ../../djangodocs/static/docicons-warning.png -------------------------------------------------------------------------------- /django-master/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/docs/conf.py -------------------------------------------------------------------------------- /django-master/docs/contents.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/docs/contents.txt -------------------------------------------------------------------------------- /django-master/docs/faq/admin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/docs/faq/admin.txt -------------------------------------------------------------------------------- /django-master/docs/faq/general.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/docs/faq/general.txt -------------------------------------------------------------------------------- /django-master/docs/faq/help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/docs/faq/help.txt -------------------------------------------------------------------------------- /django-master/docs/faq/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/docs/faq/index.txt -------------------------------------------------------------------------------- /django-master/docs/faq/install.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/docs/faq/install.txt -------------------------------------------------------------------------------- /django-master/docs/faq/models.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/docs/faq/models.txt -------------------------------------------------------------------------------- /django-master/docs/faq/usage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/docs/faq/usage.txt -------------------------------------------------------------------------------- /django-master/docs/glossary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/docs/glossary.txt -------------------------------------------------------------------------------- /django-master/docs/howto/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/docs/howto/index.txt -------------------------------------------------------------------------------- /django-master/docs/howto/jython.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/docs/howto/jython.txt -------------------------------------------------------------------------------- /django-master/docs/howto/windows.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/docs/howto/windows.txt -------------------------------------------------------------------------------- /django-master/docs/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/docs/index.txt -------------------------------------------------------------------------------- /django-master/docs/internals/git.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/docs/internals/git.txt -------------------------------------------------------------------------------- /django-master/docs/intro/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/docs/intro/index.txt -------------------------------------------------------------------------------- /django-master/docs/intro/install.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/docs/intro/install.txt -------------------------------------------------------------------------------- /django-master/docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/docs/make.bat -------------------------------------------------------------------------------- /django-master/docs/misc/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/docs/misc/index.txt -------------------------------------------------------------------------------- /django-master/docs/ref/checks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/docs/ref/checks.txt -------------------------------------------------------------------------------- /django-master/docs/ref/csrf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/docs/ref/csrf.txt -------------------------------------------------------------------------------- /django-master/docs/ref/databases.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/docs/ref/databases.txt -------------------------------------------------------------------------------- /django-master/docs/ref/forms/api.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/docs/ref/forms/api.txt -------------------------------------------------------------------------------- /django-master/docs/ref/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/docs/ref/index.txt -------------------------------------------------------------------------------- /django-master/docs/ref/settings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/docs/ref/settings.txt -------------------------------------------------------------------------------- /django-master/docs/ref/signals.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/docs/ref/signals.txt -------------------------------------------------------------------------------- /django-master/docs/ref/unicode.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/docs/ref/unicode.txt -------------------------------------------------------------------------------- /django-master/docs/ref/urls.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/docs/ref/urls.txt -------------------------------------------------------------------------------- /django-master/docs/ref/utils.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/docs/ref/utils.txt -------------------------------------------------------------------------------- /django-master/docs/ref/views.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/docs/ref/views.txt -------------------------------------------------------------------------------- /django-master/docs/releases/0.95.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/docs/releases/0.95.txt -------------------------------------------------------------------------------- /django-master/docs/releases/0.96.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/docs/releases/0.96.txt -------------------------------------------------------------------------------- /django-master/docs/releases/1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/docs/releases/1.0.txt -------------------------------------------------------------------------------- /django-master/docs/releases/1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/docs/releases/1.1.txt -------------------------------------------------------------------------------- /django-master/docs/releases/1.10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/docs/releases/1.10.txt -------------------------------------------------------------------------------- /django-master/docs/releases/1.11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/docs/releases/1.11.txt -------------------------------------------------------------------------------- /django-master/docs/releases/1.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/docs/releases/1.2.txt -------------------------------------------------------------------------------- /django-master/docs/releases/1.3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/docs/releases/1.3.txt -------------------------------------------------------------------------------- /django-master/docs/releases/1.4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/docs/releases/1.4.txt -------------------------------------------------------------------------------- /django-master/docs/releases/1.5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/docs/releases/1.5.txt -------------------------------------------------------------------------------- /django-master/docs/releases/1.6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/docs/releases/1.6.txt -------------------------------------------------------------------------------- /django-master/docs/releases/1.7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/docs/releases/1.7.txt -------------------------------------------------------------------------------- /django-master/docs/releases/1.8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/docs/releases/1.8.txt -------------------------------------------------------------------------------- /django-master/docs/releases/1.9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/docs/releases/1.9.txt -------------------------------------------------------------------------------- /django-master/docs/releases/2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/docs/releases/2.0.txt -------------------------------------------------------------------------------- /django-master/docs/releases/2.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/docs/releases/2.1.txt -------------------------------------------------------------------------------- /django-master/docs/releases/2.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/docs/releases/2.2.txt -------------------------------------------------------------------------------- /django-master/docs/spelling_wordlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/docs/spelling_wordlist -------------------------------------------------------------------------------- /django-master/docs/topics/cache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/docs/topics/cache.txt -------------------------------------------------------------------------------- /django-master/docs/topics/checks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/docs/topics/checks.txt -------------------------------------------------------------------------------- /django-master/docs/topics/db/sql.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/docs/topics/db/sql.txt -------------------------------------------------------------------------------- /django-master/docs/topics/email.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/docs/topics/email.txt -------------------------------------------------------------------------------- /django-master/docs/topics/files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/docs/topics/files.txt -------------------------------------------------------------------------------- /django-master/docs/topics/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/docs/topics/index.txt -------------------------------------------------------------------------------- /django-master/extras/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/extras/Makefile -------------------------------------------------------------------------------- /django-master/extras/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/extras/README.TXT -------------------------------------------------------------------------------- /django-master/js_tests/tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/js_tests/tests.html -------------------------------------------------------------------------------- /django-master/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/package.json -------------------------------------------------------------------------------- /django-master/scripts/rpm-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/scripts/rpm-install.sh -------------------------------------------------------------------------------- /django-master/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/setup.cfg -------------------------------------------------------------------------------- /django-master/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/setup.py -------------------------------------------------------------------------------- /django-master/tests/.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/tests/.coveragerc -------------------------------------------------------------------------------- /django-master/tests/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/tests/README.rst -------------------------------------------------------------------------------- /django-master/tests/absolute_url_overrides/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/admin_autodiscover/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/admin_changelist/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/admin_checks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/admin_custom_urls/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/admin_default_site/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/admin_docs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/admin_docs/evilfile.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/admin_filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/admin_inlines/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/admin_ordering/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/admin_registration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/admin_scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/admin_scripts/another_app_waiting_migration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/admin_scripts/another_app_waiting_migration/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/admin_scripts/app_raising_messages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/admin_scripts/app_raising_warning/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/admin_scripts/app_waiting_migration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/admin_scripts/app_waiting_migration/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/admin_scripts/app_with_import/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/admin_scripts/broken_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/admin_scripts/broken_app/models.py: -------------------------------------------------------------------------------- 1 | from django.db import modelz # NOQA 2 | -------------------------------------------------------------------------------- /django-master/tests/admin_scripts/complex_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/admin_scripts/complex_app/admin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/admin_scripts/custom_templates/app_template/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/admin_scripts/custom_templates/app_template/api.py: -------------------------------------------------------------------------------- 1 | # your API code 2 | -------------------------------------------------------------------------------- /django-master/tests/admin_scripts/custom_templates/project_template/additional_dir/extra.py: -------------------------------------------------------------------------------- 1 | # this file uses the {{ extra }} variable 2 | -------------------------------------------------------------------------------- /django-master/tests/admin_scripts/custom_templates/project_template/project_name/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/admin_scripts/simple_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/admin_scripts/simple_app/models.py: -------------------------------------------------------------------------------- 1 | from ..complex_app.models.bar import Bar 2 | 3 | __all__ = ['Bar'] 4 | -------------------------------------------------------------------------------- /django-master/tests/admin_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/admin_views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/admin_widgets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/aggregation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/aggregation_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/annotations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/app_loading/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/app_loading/not_installed/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/apps/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/tests/apps/apps.py -------------------------------------------------------------------------------- /django-master/tests/apps/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/tests/apps/models.py -------------------------------------------------------------------------------- /django-master/tests/apps/namespace_package_other_base/nsapp/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/apps/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/tests/apps/tests.py -------------------------------------------------------------------------------- /django-master/tests/auth_tests/common-passwords-custom.txt: -------------------------------------------------------------------------------- 1 | from-my-custom-list 2 | -------------------------------------------------------------------------------- /django-master/tests/auth_tests/templates/context_processors/auth_attrs_access.html: -------------------------------------------------------------------------------- 1 | {{ user }} 2 | -------------------------------------------------------------------------------- /django-master/tests/auth_tests/templates/context_processors/auth_attrs_no_access.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /django-master/tests/auth_tests/templates/registration/logged_out.html: -------------------------------------------------------------------------------- 1 | Logged out 2 | -------------------------------------------------------------------------------- /django-master/tests/auth_tests/templates/registration/login.html: -------------------------------------------------------------------------------- 1 | {{ form.as_ul }} 2 | -------------------------------------------------------------------------------- /django-master/tests/auth_tests/templates/registration/password_change_form.html: -------------------------------------------------------------------------------- 1 | {{ form }} 2 | -------------------------------------------------------------------------------- /django-master/tests/auth_tests/templates/registration/password_reset_complete.html: -------------------------------------------------------------------------------- 1 | Password reset successfully 2 | -------------------------------------------------------------------------------- /django-master/tests/auth_tests/templates/registration/password_reset_done.html: -------------------------------------------------------------------------------- 1 | Email sent 2 | -------------------------------------------------------------------------------- /django-master/tests/auth_tests/templates/registration/password_reset_form.html: -------------------------------------------------------------------------------- 1 | {{ form }} 2 | -------------------------------------------------------------------------------- /django-master/tests/backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/backends/base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/backends/mysql/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/backends/oracle/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/backends/postgresql/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/backends/sqlite/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/base/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/tests/base/models.py -------------------------------------------------------------------------------- /django-master/tests/bash_completion/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/basic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/basic/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/tests/basic/models.py -------------------------------------------------------------------------------- /django-master/tests/basic/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/tests/basic/tests.py -------------------------------------------------------------------------------- /django-master/tests/builtin_server/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/bulk_create/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/cache/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/cache/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/tests/cache/models.py -------------------------------------------------------------------------------- /django-master/tests/cache/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/tests/cache/tests.py -------------------------------------------------------------------------------- /django-master/tests/check_framework/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/check_framework/urls/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/check_framework/urls/contains_tuple.py: -------------------------------------------------------------------------------- 1 | urlpatterns = [ 2 | (r'^tuple/$', lambda x: x), 3 | ] 4 | -------------------------------------------------------------------------------- /django-master/tests/check_framework/urls/path_compatibility/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/choices/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/choices/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/tests/choices/tests.py -------------------------------------------------------------------------------- /django-master/tests/conditional_processing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/constraints/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/contenttypes_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/contenttypes_tests/operations_migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/context_processors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/csrf_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/custom_columns/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/custom_lookups/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/custom_managers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/custom_methods/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/custom_migration_operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/custom_pk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/datatypes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/dates/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/dates/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/tests/dates/models.py -------------------------------------------------------------------------------- /django-master/tests/dates/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/tests/dates/tests.py -------------------------------------------------------------------------------- /django-master/tests/datetimes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/db_functions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/db_functions/math/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/db_typecasts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/dbshell/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/decorators/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/defer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/defer/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/tests/defer/models.py -------------------------------------------------------------------------------- /django-master/tests/defer/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/tests/defer/tests.py -------------------------------------------------------------------------------- /django-master/tests/defer_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/delete/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/delete/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/tests/delete/models.py -------------------------------------------------------------------------------- /django-master/tests/delete/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/tests/delete/tests.py -------------------------------------------------------------------------------- /django-master/tests/delete_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/deprecation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/dispatch/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/distinct_on_fields/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/empty/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/empty/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/tests/empty/models.py -------------------------------------------------------------------------------- /django-master/tests/empty/no_models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/empty/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/tests/empty/tests.py -------------------------------------------------------------------------------- /django-master/tests/expressions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/expressions_case/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/expressions_window/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/extra_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/field_deconstruction/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/field_defaults/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/field_subclassing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/file_storage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/file_uploads/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/files/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/files/brokenimg.png: -------------------------------------------------------------------------------- 1 | 123 2 | -------------------------------------------------------------------------------- /django-master/tests/files/magic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/tests/files/magic.png -------------------------------------------------------------------------------- /django-master/tests/files/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/tests/files/test.png -------------------------------------------------------------------------------- /django-master/tests/files/test1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/tests/files/test1.png -------------------------------------------------------------------------------- /django-master/tests/files/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KinjalDas/Inventory-Management-System-Django/HEAD/django-master/tests/files/tests.py -------------------------------------------------------------------------------- /django-master/tests/filtered_relation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/fixtures/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/fixtures_model_package/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/fixtures_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/fixtures_regress/fixtures/empty.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /django-master/tests/flatpages_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/flatpages_tests/templates/registration/login.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/force_insert_update/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/foreign_object/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/forms_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/forms_tests/field_tests/filepathfield_test_dir/README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/forms_tests/field_tests/filepathfield_test_dir/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/forms_tests/field_tests/filepathfield_test_dir/a.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/forms_tests/field_tests/filepathfield_test_dir/ab.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/forms_tests/field_tests/filepathfield_test_dir/b.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/forms_tests/field_tests/filepathfield_test_dir/c/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/forms_tests/field_tests/filepathfield_test_dir/c/d.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/forms_tests/field_tests/filepathfield_test_dir/c/e.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/forms_tests/field_tests/filepathfield_test_dir/c/f/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/forms_tests/field_tests/filepathfield_test_dir/c/f/g.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/forms_tests/field_tests/filepathfield_test_dir/h/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/forms_tests/field_tests/filepathfield_test_dir/j/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/forms_tests/jinja2/forms_tests/custom_widget.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /django-master/tests/forms_tests/templates/forms_tests/custom_widget.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /django-master/tests/forms_tests/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/forms_tests/tests/filepath_test_files/.dot-file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/forms_tests/tests/filepath_test_files/directory/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/forms_tests/tests/filepath_test_files/fake-image.jpg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/forms_tests/tests/filepath_test_files/real-text-file.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/forms_tests/widget_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/from_db_value/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/generic_inline_admin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/generic_relations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/generic_relations_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/generic_views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-master/tests/generic_views/jinja2/generic_views/using.html: -------------------------------------------------------------------------------- 1 | Jinja2 2 | -------------------------------------------------------------------------------- /django-master/tests/generic_views/templates/generic_views/about.html: -------------------------------------------------------------------------------- 1 |