├── LICENSE ├── README.md ├── base.html ├── dbg.pdf ├── django_with_data_science-master ├── .DS_Store ├── .Python ├── bin │ ├── __pycache__ │ │ └── django-admin.cpython-38.pyc │ ├── activate │ ├── activate.csh │ ├── activate.fish │ ├── activate.ps1 │ ├── activate.xsh │ ├── activate_this.py │ ├── django-admin │ ├── django-admin.py │ ├── easy_install │ ├── easy_install-3.8 │ ├── f2py │ ├── f2py3 │ ├── f2py3.8 │ ├── pip │ ├── pip3 │ ├── pip3.8 │ ├── python │ ├── python-config │ ├── python3 │ ├── python3.8 │ ├── sqlformat │ └── wheel ├── include │ └── python3.8 ├── lib │ └── python3.8 │ │ ├── LICENSE.txt │ │ ├── __future__.py │ │ ├── _bootlocale.py │ │ ├── _collections_abc.py │ │ ├── _dummy_thread.py │ │ ├── _weakrefset.py │ │ ├── abc.py │ │ ├── base64.py │ │ ├── bisect.py │ │ ├── codecs.py │ │ ├── collections │ │ ├── config-3.8-darwin │ │ ├── copy.py │ │ ├── copyreg.py │ │ ├── distutils │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ └── __init__.cpython-38.pyc │ │ └── distutils.cfg │ │ ├── encodings │ │ ├── enum.py │ │ ├── fnmatch.py │ │ ├── functools.py │ │ ├── genericpath.py │ │ ├── hashlib.py │ │ ├── heapq.py │ │ ├── hmac.py │ │ ├── imp.py │ │ ├── importlib │ │ ├── io.py │ │ ├── keyword.py │ │ ├── lib-dynload │ │ ├── linecache.py │ │ ├── locale.py │ │ ├── no-global-site-packages.txt │ │ ├── ntpath.py │ │ ├── operator.py │ │ ├── orig-prefix.txt │ │ ├── os.py │ │ ├── posixpath.py │ │ ├── random.py │ │ ├── re.py │ │ ├── readline.so │ │ ├── reprlib.py │ │ ├── rlcompleter.py │ │ ├── shutil.py │ │ ├── site-packages │ │ ├── asgiref-3.2.5.dist-info │ │ │ ├── INSTALLER │ │ │ ├── LICENSE │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── WHEEL │ │ │ └── top_level.txt │ │ ├── asgiref │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── compatibility.cpython-38.pyc │ │ │ │ ├── current_thread_executor.cpython-38.pyc │ │ │ │ ├── local.cpython-38.pyc │ │ │ │ ├── server.cpython-38.pyc │ │ │ │ ├── sync.cpython-38.pyc │ │ │ │ ├── testing.cpython-38.pyc │ │ │ │ ├── timeout.cpython-38.pyc │ │ │ │ └── wsgi.cpython-38.pyc │ │ │ ├── compatibility.py │ │ │ ├── current_thread_executor.py │ │ │ ├── local.py │ │ │ ├── server.py │ │ │ ├── sync.py │ │ │ ├── testing.py │ │ │ ├── timeout.py │ │ │ └── wsgi.py │ │ ├── cycler-0.10.0.dist-info │ │ │ ├── DESCRIPTION.rst │ │ │ ├── INSTALLER │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── WHEEL │ │ │ ├── metadata.json │ │ │ └── top_level.txt │ │ ├── cycler.py │ │ ├── dateutil │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── _common.cpython-38.pyc │ │ │ │ ├── _version.cpython-38.pyc │ │ │ │ ├── easter.cpython-38.pyc │ │ │ │ ├── relativedelta.cpython-38.pyc │ │ │ │ ├── rrule.cpython-38.pyc │ │ │ │ ├── tzwin.cpython-38.pyc │ │ │ │ └── utils.cpython-38.pyc │ │ │ ├── _common.py │ │ │ ├── _version.py │ │ │ ├── easter.py │ │ │ ├── parser │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── _parser.cpython-38.pyc │ │ │ │ │ └── isoparser.cpython-38.pyc │ │ │ │ ├── _parser.py │ │ │ │ └── isoparser.py │ │ │ ├── relativedelta.py │ │ │ ├── rrule.py │ │ │ ├── tz │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── _common.cpython-38.pyc │ │ │ │ │ ├── _factories.cpython-38.pyc │ │ │ │ │ ├── tz.cpython-38.pyc │ │ │ │ │ └── win.cpython-38.pyc │ │ │ │ ├── _common.py │ │ │ │ ├── _factories.py │ │ │ │ ├── tz.py │ │ │ │ └── win.py │ │ │ ├── tzwin.py │ │ │ ├── utils.py │ │ │ └── zoneinfo │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ └── rebuild.cpython-38.pyc │ │ │ │ ├── dateutil-zoneinfo.tar.gz │ │ │ │ └── rebuild.py │ │ ├── django │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── apps │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── config.cpython-38.pyc │ │ │ │ │ └── registry.cpython-38.pyc │ │ │ │ ├── config.py │ │ │ │ └── registry.py │ │ │ ├── bin │ │ │ │ ├── __pycache__ │ │ │ │ │ └── django-admin.cpython-38.pyc │ │ │ │ └── django-admin.py │ │ │ ├── conf │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ └── global_settings.cpython-38.pyc │ │ │ │ ├── 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 │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ └── __init__.cpython-38.pyc │ │ │ │ │ ├── af │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── ar │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── ast │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── az │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── be │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── bg │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── bn │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── br │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── bs │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── ca │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── cs │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── cy │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── da │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── de │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── de_CH │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── dsb │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── el │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── en │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── en_AU │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── en_GB │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── eo │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── es │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── es_AR │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── es_CO │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── es_MX │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── es_NI │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── es_PR │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── es_VE │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── et │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── eu │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── fa │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── fi │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── fr │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── fy │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── ga │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── gd │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── gl │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── he │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── hi │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── hr │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── hsb │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── hu │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── hy │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── ia │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── id │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── io │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── is │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── it │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── ja │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── ka │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── 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 │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── kn │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── ko │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── lb │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── lt │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── lv │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── mk │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── ml │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── mn │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── 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 │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── ne │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── nl │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── nn │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── 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 │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── pt │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── pt_BR │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── ro │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── ru │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── sk │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── sl │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── sq │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── sr │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── sr_Latn │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── sv │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── sw │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── ta │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── te │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── th │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── tr │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── 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 │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── ur │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── uz │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── vi │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── zh_Hans │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ └── zh_Hant │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ ├── project_template │ │ │ │ │ ├── manage.py-tpl │ │ │ │ │ └── project_name │ │ │ │ │ │ ├── __init__.py-tpl │ │ │ │ │ │ ├── asgi.py-tpl │ │ │ │ │ │ ├── settings.py-tpl │ │ │ │ │ │ ├── urls.py-tpl │ │ │ │ │ │ └── wsgi.py-tpl │ │ │ │ └── urls │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── i18n.cpython-38.pyc │ │ │ │ │ └── static.cpython-38.pyc │ │ │ │ │ ├── i18n.py │ │ │ │ │ └── static.py │ │ │ ├── contrib │ │ │ │ ├── __init__.py │ │ │ │ ├── admin │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── actions.cpython-38.pyc │ │ │ │ │ │ ├── apps.cpython-38.pyc │ │ │ │ │ │ ├── checks.cpython-38.pyc │ │ │ │ │ │ ├── decorators.cpython-38.pyc │ │ │ │ │ │ ├── exceptions.cpython-38.pyc │ │ │ │ │ │ ├── filters.cpython-38.pyc │ │ │ │ │ │ ├── forms.cpython-38.pyc │ │ │ │ │ │ ├── helpers.cpython-38.pyc │ │ │ │ │ │ ├── models.cpython-38.pyc │ │ │ │ │ │ ├── options.cpython-38.pyc │ │ │ │ │ │ ├── sites.cpython-38.pyc │ │ │ │ │ │ ├── tests.cpython-38.pyc │ │ │ │ │ │ ├── utils.cpython-38.pyc │ │ │ │ │ │ └── widgets.cpython-38.pyc │ │ │ │ │ ├── actions.py │ │ │ │ │ ├── apps.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 │ │ │ │ │ │ ├── hy │ │ │ │ │ │ │ └── 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 │ │ │ │ │ │ ├── uz │ │ │ │ │ │ │ └── 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 │ │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ │ ├── 0001_initial.cpython-38.pyc │ │ │ │ │ │ │ ├── 0002_logentry_remove_auto_add.cpython-38.pyc │ │ │ │ │ │ │ ├── 0003_logentry_add_action_flag_choices.cpython-38.pyc │ │ │ │ │ │ │ └── __init__.cpython-38.pyc │ │ │ │ │ ├── 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 │ │ │ │ │ │ │ ├── urlify.js │ │ │ │ │ │ │ └── vendor │ │ │ │ │ │ │ ├── jquery │ │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ │ ├── jquery.js │ │ │ │ │ │ │ └── jquery.min.js │ │ │ │ │ │ │ ├── select2 │ │ │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ │ │ ├── i18n │ │ │ │ │ │ │ │ ├── af.js │ │ │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ │ │ ├── az.js │ │ │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ │ │ ├── bn.js │ │ │ │ │ │ │ │ ├── bs.js │ │ │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ │ │ ├── dsb.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 │ │ │ │ │ │ │ │ ├── hsb.js │ │ │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ │ │ ├── hy.js │ │ │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ │ │ ├── is.js │ │ │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ │ │ ├── ka.js │ │ │ │ │ │ │ │ ├── km.js │ │ │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ │ │ ├── lt.js │ │ │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ │ │ ├── mk.js │ │ │ │ │ │ │ │ ├── ms.js │ │ │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ │ │ ├── ne.js │ │ │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ │ │ ├── ps.js │ │ │ │ │ │ │ │ ├── pt-BR.js │ │ │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ │ │ ├── sl.js │ │ │ │ │ │ │ │ ├── sq.js │ │ │ │ │ │ │ │ ├── sr-Cyrl.js │ │ │ │ │ │ │ │ ├── sr.js │ │ │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ │ │ ├── th.js │ │ │ │ │ │ │ │ ├── tk.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 │ │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ ├── admin_list.cpython-38.pyc │ │ │ │ │ │ │ ├── admin_modify.cpython-38.pyc │ │ │ │ │ │ │ ├── admin_urls.cpython-38.pyc │ │ │ │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ │ │ │ └── log.cpython-38.pyc │ │ │ │ │ │ ├── admin_list.py │ │ │ │ │ │ ├── admin_modify.py │ │ │ │ │ │ ├── admin_urls.py │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ └── log.py │ │ │ │ │ ├── tests.py │ │ │ │ │ ├── utils.py │ │ │ │ │ ├── views │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ ├── autocomplete.cpython-38.pyc │ │ │ │ │ │ │ ├── decorators.cpython-38.pyc │ │ │ │ │ │ │ └── main.cpython-38.pyc │ │ │ │ │ │ ├── autocomplete.py │ │ │ │ │ │ ├── decorators.py │ │ │ │ │ │ └── main.py │ │ │ │ │ └── widgets.py │ │ │ │ ├── admindocs │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── apps.cpython-38.pyc │ │ │ │ │ │ ├── middleware.cpython-38.pyc │ │ │ │ │ │ ├── urls.cpython-38.pyc │ │ │ │ │ │ ├── utils.cpython-38.pyc │ │ │ │ │ │ └── views.cpython-38.pyc │ │ │ │ │ ├── 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 │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── admin.cpython-38.pyc │ │ │ │ │ │ ├── apps.cpython-38.pyc │ │ │ │ │ │ ├── backends.cpython-38.pyc │ │ │ │ │ │ ├── base_user.cpython-38.pyc │ │ │ │ │ │ ├── checks.cpython-38.pyc │ │ │ │ │ │ ├── context_processors.cpython-38.pyc │ │ │ │ │ │ ├── decorators.cpython-38.pyc │ │ │ │ │ │ ├── forms.cpython-38.pyc │ │ │ │ │ │ ├── hashers.cpython-38.pyc │ │ │ │ │ │ ├── middleware.cpython-38.pyc │ │ │ │ │ │ ├── mixins.cpython-38.pyc │ │ │ │ │ │ ├── models.cpython-38.pyc │ │ │ │ │ │ ├── password_validation.cpython-38.pyc │ │ │ │ │ │ ├── signals.cpython-38.pyc │ │ │ │ │ │ ├── tokens.cpython-38.pyc │ │ │ │ │ │ ├── urls.cpython-38.pyc │ │ │ │ │ │ ├── validators.cpython-38.pyc │ │ │ │ │ │ └── views.cpython-38.pyc │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── modwsgi.cpython-38.pyc │ │ │ │ │ │ └── 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 │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ └── __init__.cpython-38.pyc │ │ │ │ │ │ └── commands │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── changepassword.cpython-38.pyc │ │ │ │ │ │ │ └── createsuperuser.cpython-38.pyc │ │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── 0010_alter_group_name_max_length.py │ │ │ │ │ │ ├── 0011_update_proxy_permissions.py │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ │ ├── 0001_initial.cpython-38.pyc │ │ │ │ │ │ │ ├── 0002_alter_permission_name_max_length.cpython-38.pyc │ │ │ │ │ │ │ ├── 0003_alter_user_email_max_length.cpython-38.pyc │ │ │ │ │ │ │ ├── 0004_alter_user_username_opts.cpython-38.pyc │ │ │ │ │ │ │ ├── 0005_alter_user_last_login_null.cpython-38.pyc │ │ │ │ │ │ │ ├── 0006_require_contenttypes_0002.cpython-38.pyc │ │ │ │ │ │ │ ├── 0007_alter_validators_add_error_messages.cpython-38.pyc │ │ │ │ │ │ │ ├── 0008_alter_user_username_max_length.cpython-38.pyc │ │ │ │ │ │ │ ├── 0009_alter_user_last_name_max_length.cpython-38.pyc │ │ │ │ │ │ │ ├── 0010_alter_group_name_max_length.cpython-38.pyc │ │ │ │ │ │ │ ├── 0011_update_proxy_permissions.cpython-38.pyc │ │ │ │ │ │ │ └── __init__.cpython-38.pyc │ │ │ │ │ ├── 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 │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── admin.cpython-38.pyc │ │ │ │ │ │ ├── apps.cpython-38.pyc │ │ │ │ │ │ ├── checks.cpython-38.pyc │ │ │ │ │ │ ├── fields.cpython-38.pyc │ │ │ │ │ │ ├── forms.cpython-38.pyc │ │ │ │ │ │ ├── models.cpython-38.pyc │ │ │ │ │ │ └── views.cpython-38.pyc │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── 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 │ │ │ │ │ ├── management │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ └── __init__.cpython-38.pyc │ │ │ │ │ │ └── commands │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ └── remove_stale_contenttypes.cpython-38.pyc │ │ │ │ │ │ │ └── remove_stale_contenttypes.py │ │ │ │ │ ├── migrations │ │ │ │ │ │ ├── 0001_initial.py │ │ │ │ │ │ ├── 0002_remove_content_type_name.py │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ │ ├── 0001_initial.cpython-38.pyc │ │ │ │ │ │ │ ├── 0002_remove_content_type_name.cpython-38.pyc │ │ │ │ │ │ │ └── __init__.cpython-38.pyc │ │ │ │ │ ├── models.py │ │ │ │ │ └── views.py │ │ │ │ ├── flatpages │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── admin.cpython-38.pyc │ │ │ │ │ │ ├── apps.cpython-38.pyc │ │ │ │ │ │ ├── forms.cpython-38.pyc │ │ │ │ │ │ ├── middleware.cpython-38.pyc │ │ │ │ │ │ ├── models.cpython-38.pyc │ │ │ │ │ │ ├── sitemaps.cpython-38.pyc │ │ │ │ │ │ ├── urls.cpython-38.pyc │ │ │ │ │ │ └── views.cpython-38.pyc │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── 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 │ │ │ │ │ ├── middleware.py │ │ │ │ │ ├── migrations │ │ │ │ │ │ ├── 0001_initial.py │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ │ ├── 0001_initial.cpython-38.pyc │ │ │ │ │ │ │ └── __init__.cpython-38.pyc │ │ │ │ │ ├── models.py │ │ │ │ │ ├── sitemaps.py │ │ │ │ │ ├── templatetags │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── flatpages.cpython-38.pyc │ │ │ │ │ │ └── flatpages.py │ │ │ │ │ ├── urls.py │ │ │ │ │ └── views.py │ │ │ │ ├── gis │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── apps.cpython-38.pyc │ │ │ │ │ │ ├── feeds.cpython-38.pyc │ │ │ │ │ │ ├── geometry.cpython-38.pyc │ │ │ │ │ │ ├── measure.cpython-38.pyc │ │ │ │ │ │ ├── ptr.cpython-38.pyc │ │ │ │ │ │ ├── shortcuts.cpython-38.pyc │ │ │ │ │ │ └── views.cpython-38.pyc │ │ │ │ │ ├── admin │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ ├── options.cpython-38.pyc │ │ │ │ │ │ │ └── widgets.cpython-38.pyc │ │ │ │ │ │ ├── options.py │ │ │ │ │ │ └── widgets.py │ │ │ │ │ ├── apps.py │ │ │ │ │ ├── db │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ └── __init__.cpython-38.pyc │ │ │ │ │ │ ├── backends │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ │ └── utils.cpython-38.pyc │ │ │ │ │ │ │ ├── base │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ │ │ ├── adapter.cpython-38.pyc │ │ │ │ │ │ │ │ │ ├── features.cpython-38.pyc │ │ │ │ │ │ │ │ │ ├── models.cpython-38.pyc │ │ │ │ │ │ │ │ │ └── operations.cpython-38.pyc │ │ │ │ │ │ │ │ ├── adapter.py │ │ │ │ │ │ │ │ ├── features.py │ │ │ │ │ │ │ │ ├── models.py │ │ │ │ │ │ │ │ └── operations.py │ │ │ │ │ │ │ ├── mysql │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ │ │ │ │ │ ├── features.cpython-38.pyc │ │ │ │ │ │ │ │ │ ├── introspection.cpython-38.pyc │ │ │ │ │ │ │ │ │ ├── operations.cpython-38.pyc │ │ │ │ │ │ │ │ │ └── schema.cpython-38.pyc │ │ │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ │ │ ├── features.py │ │ │ │ │ │ │ │ ├── introspection.py │ │ │ │ │ │ │ │ ├── operations.py │ │ │ │ │ │ │ │ └── schema.py │ │ │ │ │ │ │ ├── oracle │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ │ │ ├── adapter.cpython-38.pyc │ │ │ │ │ │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ │ │ │ │ │ ├── features.cpython-38.pyc │ │ │ │ │ │ │ │ │ ├── introspection.cpython-38.pyc │ │ │ │ │ │ │ │ │ ├── models.cpython-38.pyc │ │ │ │ │ │ │ │ │ ├── operations.cpython-38.pyc │ │ │ │ │ │ │ │ │ └── schema.cpython-38.pyc │ │ │ │ │ │ │ │ ├── adapter.py │ │ │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ │ │ ├── features.py │ │ │ │ │ │ │ │ ├── introspection.py │ │ │ │ │ │ │ │ ├── models.py │ │ │ │ │ │ │ │ ├── operations.py │ │ │ │ │ │ │ │ └── schema.py │ │ │ │ │ │ │ ├── postgis │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ │ │ ├── adapter.cpython-38.pyc │ │ │ │ │ │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ │ │ │ │ │ ├── const.cpython-38.pyc │ │ │ │ │ │ │ │ │ ├── features.cpython-38.pyc │ │ │ │ │ │ │ │ │ ├── introspection.cpython-38.pyc │ │ │ │ │ │ │ │ │ ├── models.cpython-38.pyc │ │ │ │ │ │ │ │ │ ├── operations.cpython-38.pyc │ │ │ │ │ │ │ │ │ ├── pgraster.cpython-38.pyc │ │ │ │ │ │ │ │ │ └── schema.cpython-38.pyc │ │ │ │ │ │ │ │ ├── adapter.py │ │ │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ │ │ ├── const.py │ │ │ │ │ │ │ │ ├── features.py │ │ │ │ │ │ │ │ ├── introspection.py │ │ │ │ │ │ │ │ ├── models.py │ │ │ │ │ │ │ │ ├── operations.py │ │ │ │ │ │ │ │ ├── pgraster.py │ │ │ │ │ │ │ │ └── schema.py │ │ │ │ │ │ │ ├── spatialite │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ │ │ ├── adapter.cpython-38.pyc │ │ │ │ │ │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ │ │ │ │ │ ├── client.cpython-38.pyc │ │ │ │ │ │ │ │ │ ├── features.cpython-38.pyc │ │ │ │ │ │ │ │ │ ├── introspection.cpython-38.pyc │ │ │ │ │ │ │ │ │ ├── models.cpython-38.pyc │ │ │ │ │ │ │ │ │ ├── operations.cpython-38.pyc │ │ │ │ │ │ │ │ │ └── schema.cpython-38.pyc │ │ │ │ │ │ │ │ ├── adapter.py │ │ │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ │ │ ├── client.py │ │ │ │ │ │ │ │ ├── features.py │ │ │ │ │ │ │ │ ├── introspection.py │ │ │ │ │ │ │ │ ├── models.py │ │ │ │ │ │ │ │ ├── operations.py │ │ │ │ │ │ │ │ └── schema.py │ │ │ │ │ │ │ └── utils.py │ │ │ │ │ │ └── models │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ ├── aggregates.cpython-38.pyc │ │ │ │ │ │ │ ├── fields.cpython-38.pyc │ │ │ │ │ │ │ ├── functions.cpython-38.pyc │ │ │ │ │ │ │ ├── lookups.cpython-38.pyc │ │ │ │ │ │ │ └── proxy.cpython-38.pyc │ │ │ │ │ │ │ ├── aggregates.py │ │ │ │ │ │ │ ├── fields.py │ │ │ │ │ │ │ ├── functions.py │ │ │ │ │ │ │ ├── lookups.py │ │ │ │ │ │ │ ├── proxy.py │ │ │ │ │ │ │ └── sql │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── conversion.cpython-38.pyc │ │ │ │ │ │ │ └── conversion.py │ │ │ │ │ ├── feeds.py │ │ │ │ │ ├── forms │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ ├── fields.cpython-38.pyc │ │ │ │ │ │ │ └── widgets.cpython-38.pyc │ │ │ │ │ │ ├── fields.py │ │ │ │ │ │ └── widgets.py │ │ │ │ │ ├── gdal │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ │ │ │ ├── datasource.cpython-38.pyc │ │ │ │ │ │ │ ├── driver.cpython-38.pyc │ │ │ │ │ │ │ ├── envelope.cpython-38.pyc │ │ │ │ │ │ │ ├── error.cpython-38.pyc │ │ │ │ │ │ │ ├── feature.cpython-38.pyc │ │ │ │ │ │ │ ├── field.cpython-38.pyc │ │ │ │ │ │ │ ├── geometries.cpython-38.pyc │ │ │ │ │ │ │ ├── geomtype.cpython-38.pyc │ │ │ │ │ │ │ ├── layer.cpython-38.pyc │ │ │ │ │ │ │ ├── libgdal.cpython-38.pyc │ │ │ │ │ │ │ └── srs.cpython-38.pyc │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ │ ├── ds.cpython-38.pyc │ │ │ │ │ │ │ │ ├── errcheck.cpython-38.pyc │ │ │ │ │ │ │ │ ├── generation.cpython-38.pyc │ │ │ │ │ │ │ │ ├── geom.cpython-38.pyc │ │ │ │ │ │ │ │ ├── raster.cpython-38.pyc │ │ │ │ │ │ │ │ └── srs.cpython-38.pyc │ │ │ │ │ │ │ ├── ds.py │ │ │ │ │ │ │ ├── errcheck.py │ │ │ │ │ │ │ ├── generation.py │ │ │ │ │ │ │ ├── geom.py │ │ │ │ │ │ │ ├── raster.py │ │ │ │ │ │ │ └── srs.py │ │ │ │ │ │ ├── raster │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ │ ├── band.cpython-38.pyc │ │ │ │ │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ │ │ │ │ ├── const.cpython-38.pyc │ │ │ │ │ │ │ │ └── source.cpython-38.pyc │ │ │ │ │ │ │ ├── band.py │ │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ │ ├── const.py │ │ │ │ │ │ │ └── source.py │ │ │ │ │ │ └── srs.py │ │ │ │ │ ├── geoip2 │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ │ │ │ └── resources.cpython-38.pyc │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ └── resources.py │ │ │ │ │ ├── geometry.py │ │ │ │ │ ├── geos │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ │ │ │ ├── collections.cpython-38.pyc │ │ │ │ │ │ │ ├── coordseq.cpython-38.pyc │ │ │ │ │ │ │ ├── error.cpython-38.pyc │ │ │ │ │ │ │ ├── factory.cpython-38.pyc │ │ │ │ │ │ │ ├── geometry.cpython-38.pyc │ │ │ │ │ │ │ ├── io.cpython-38.pyc │ │ │ │ │ │ │ ├── libgeos.cpython-38.pyc │ │ │ │ │ │ │ ├── linestring.cpython-38.pyc │ │ │ │ │ │ │ ├── mutable_list.cpython-38.pyc │ │ │ │ │ │ │ ├── point.cpython-38.pyc │ │ │ │ │ │ │ ├── polygon.cpython-38.pyc │ │ │ │ │ │ │ └── prepared.cpython-38.pyc │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ ├── coordseq.cpython-38.pyc │ │ │ │ │ │ │ ├── errcheck.cpython-38.pyc │ │ │ │ │ │ │ ├── geom.cpython-38.pyc │ │ │ │ │ │ │ ├── io.cpython-38.pyc │ │ │ │ │ │ │ ├── misc.cpython-38.pyc │ │ │ │ │ │ │ ├── predicates.cpython-38.pyc │ │ │ │ │ │ │ ├── prepared.cpython-38.pyc │ │ │ │ │ │ │ ├── threadsafe.cpython-38.pyc │ │ │ │ │ │ │ └── topology.cpython-38.pyc │ │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── 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 │ │ │ │ │ ├── management │ │ │ │ │ │ └── commands │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── inspectdb.cpython-38.pyc │ │ │ │ │ │ │ └── ogrinspect.cpython-38.pyc │ │ │ │ │ │ │ ├── inspectdb.py │ │ │ │ │ │ │ └── ogrinspect.py │ │ │ │ │ ├── measure.py │ │ │ │ │ ├── ptr.py │ │ │ │ │ ├── serializers │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── geojson.cpython-38.pyc │ │ │ │ │ │ └── geojson.py │ │ │ │ │ ├── shortcuts.py │ │ │ │ │ ├── sitemaps │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ ├── kml.cpython-38.pyc │ │ │ │ │ │ │ └── views.cpython-38.pyc │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ ├── layermapping.cpython-38.pyc │ │ │ │ │ │ │ ├── ogrinfo.cpython-38.pyc │ │ │ │ │ │ │ ├── ogrinspect.cpython-38.pyc │ │ │ │ │ │ │ └── srs.cpython-38.pyc │ │ │ │ │ │ ├── layermapping.py │ │ │ │ │ │ ├── ogrinfo.py │ │ │ │ │ │ ├── ogrinspect.py │ │ │ │ │ │ └── srs.py │ │ │ │ │ └── views.py │ │ │ │ ├── humanize │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ └── apps.cpython-38.pyc │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── ms │ │ │ │ │ │ │ └── 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 │ │ │ │ │ └── templatetags │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ └── humanize.cpython-38.pyc │ │ │ │ │ │ └── humanize.py │ │ │ │ ├── messages │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── api.cpython-38.pyc │ │ │ │ │ │ ├── apps.cpython-38.pyc │ │ │ │ │ │ ├── constants.cpython-38.pyc │ │ │ │ │ │ ├── context_processors.cpython-38.pyc │ │ │ │ │ │ ├── middleware.cpython-38.pyc │ │ │ │ │ │ ├── utils.cpython-38.pyc │ │ │ │ │ │ └── views.cpython-38.pyc │ │ │ │ │ ├── api.py │ │ │ │ │ ├── apps.py │ │ │ │ │ ├── constants.py │ │ │ │ │ ├── context_processors.py │ │ │ │ │ ├── middleware.py │ │ │ │ │ ├── storage │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ │ │ │ ├── cookie.cpython-38.pyc │ │ │ │ │ │ │ ├── fallback.cpython-38.pyc │ │ │ │ │ │ │ └── session.cpython-38.pyc │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── cookie.py │ │ │ │ │ │ ├── fallback.py │ │ │ │ │ │ └── session.py │ │ │ │ │ ├── utils.py │ │ │ │ │ └── views.py │ │ │ │ ├── postgres │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── apps.cpython-38.pyc │ │ │ │ │ │ ├── constraints.cpython-38.pyc │ │ │ │ │ │ ├── functions.cpython-38.pyc │ │ │ │ │ │ ├── indexes.cpython-38.pyc │ │ │ │ │ │ ├── lookups.cpython-38.pyc │ │ │ │ │ │ ├── operations.cpython-38.pyc │ │ │ │ │ │ ├── search.cpython-38.pyc │ │ │ │ │ │ ├── serializers.cpython-38.pyc │ │ │ │ │ │ ├── signals.cpython-38.pyc │ │ │ │ │ │ ├── utils.cpython-38.pyc │ │ │ │ │ │ └── validators.cpython-38.pyc │ │ │ │ │ ├── aggregates │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ ├── general.cpython-38.pyc │ │ │ │ │ │ │ ├── mixins.cpython-38.pyc │ │ │ │ │ │ │ └── statistics.cpython-38.pyc │ │ │ │ │ │ ├── general.py │ │ │ │ │ │ ├── mixins.py │ │ │ │ │ │ └── statistics.py │ │ │ │ │ ├── apps.py │ │ │ │ │ ├── constraints.py │ │ │ │ │ ├── fields │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ ├── array.cpython-38.pyc │ │ │ │ │ │ │ ├── citext.cpython-38.pyc │ │ │ │ │ │ │ ├── hstore.cpython-38.pyc │ │ │ │ │ │ │ ├── jsonb.cpython-38.pyc │ │ │ │ │ │ │ ├── mixins.cpython-38.pyc │ │ │ │ │ │ │ ├── ranges.cpython-38.pyc │ │ │ │ │ │ │ └── utils.cpython-38.pyc │ │ │ │ │ │ ├── array.py │ │ │ │ │ │ ├── citext.py │ │ │ │ │ │ ├── hstore.py │ │ │ │ │ │ ├── jsonb.py │ │ │ │ │ │ ├── mixins.py │ │ │ │ │ │ ├── ranges.py │ │ │ │ │ │ └── utils.py │ │ │ │ │ ├── forms │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ ├── array.cpython-38.pyc │ │ │ │ │ │ │ ├── hstore.cpython-38.pyc │ │ │ │ │ │ │ ├── jsonb.cpython-38.pyc │ │ │ │ │ │ │ └── ranges.cpython-38.pyc │ │ │ │ │ │ ├── array.py │ │ │ │ │ │ ├── hstore.py │ │ │ │ │ │ ├── jsonb.py │ │ │ │ │ │ └── ranges.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── indexes.py │ │ │ │ │ ├── jinja2 │ │ │ │ │ │ └── postgres │ │ │ │ │ │ │ └── widgets │ │ │ │ │ │ │ └── split_array.html │ │ │ │ │ ├── locale │ │ │ │ │ │ ├── af │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ar │ │ │ │ │ │ │ └── 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 │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── hy │ │ │ │ │ │ │ └── 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 │ │ │ │ │ │ ├── sr_Latn │ │ │ │ │ │ │ └── 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 │ │ │ │ │ ├── serializers.py │ │ │ │ │ ├── signals.py │ │ │ │ │ ├── templates │ │ │ │ │ │ └── postgres │ │ │ │ │ │ │ └── widgets │ │ │ │ │ │ │ └── split_array.html │ │ │ │ │ ├── utils.py │ │ │ │ │ └── validators.py │ │ │ │ ├── redirects │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── admin.cpython-38.pyc │ │ │ │ │ │ ├── apps.cpython-38.pyc │ │ │ │ │ │ ├── middleware.cpython-38.pyc │ │ │ │ │ │ └── models.cpython-38.pyc │ │ │ │ │ ├── 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 │ │ │ │ │ ├── middleware.py │ │ │ │ │ ├── migrations │ │ │ │ │ │ ├── 0001_initial.py │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ │ ├── 0001_initial.cpython-38.pyc │ │ │ │ │ │ │ └── __init__.cpython-38.pyc │ │ │ │ │ └── models.py │ │ │ │ ├── sessions │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── apps.cpython-38.pyc │ │ │ │ │ │ ├── base_session.cpython-38.pyc │ │ │ │ │ │ ├── exceptions.cpython-38.pyc │ │ │ │ │ │ ├── middleware.cpython-38.pyc │ │ │ │ │ │ ├── models.cpython-38.pyc │ │ │ │ │ │ └── serializers.cpython-38.pyc │ │ │ │ │ ├── apps.py │ │ │ │ │ ├── backends │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ │ │ │ ├── cache.cpython-38.pyc │ │ │ │ │ │ │ ├── cached_db.cpython-38.pyc │ │ │ │ │ │ │ ├── db.cpython-38.pyc │ │ │ │ │ │ │ ├── file.cpython-38.pyc │ │ │ │ │ │ │ └── signed_cookies.cpython-38.pyc │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ └── commands │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ └── clearsessions.cpython-38.pyc │ │ │ │ │ │ │ └── clearsessions.py │ │ │ │ │ ├── middleware.py │ │ │ │ │ ├── migrations │ │ │ │ │ │ ├── 0001_initial.py │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ │ ├── 0001_initial.cpython-38.pyc │ │ │ │ │ │ │ └── __init__.cpython-38.pyc │ │ │ │ │ ├── models.py │ │ │ │ │ └── serializers.py │ │ │ │ ├── sitemaps │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── apps.cpython-38.pyc │ │ │ │ │ │ └── views.cpython-38.pyc │ │ │ │ │ ├── apps.py │ │ │ │ │ ├── management │ │ │ │ │ │ └── commands │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ └── ping_google.cpython-38.pyc │ │ │ │ │ │ │ └── ping_google.py │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── sitemap.xml │ │ │ │ │ │ └── sitemap_index.xml │ │ │ │ │ └── views.py │ │ │ │ ├── sites │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── admin.cpython-38.pyc │ │ │ │ │ │ ├── apps.cpython-38.pyc │ │ │ │ │ │ ├── management.cpython-38.pyc │ │ │ │ │ │ ├── managers.cpython-38.pyc │ │ │ │ │ │ ├── middleware.cpython-38.pyc │ │ │ │ │ │ ├── models.cpython-38.pyc │ │ │ │ │ │ ├── requests.cpython-38.pyc │ │ │ │ │ │ └── shortcuts.cpython-38.pyc │ │ │ │ │ ├── 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 │ │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ │ ├── 0001_initial.cpython-38.pyc │ │ │ │ │ │ │ ├── 0002_alter_domain_unique.cpython-38.pyc │ │ │ │ │ │ │ └── __init__.cpython-38.pyc │ │ │ │ │ ├── models.py │ │ │ │ │ ├── requests.py │ │ │ │ │ └── shortcuts.py │ │ │ │ └── staticfiles │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── apps.py │ │ │ │ │ ├── checks.py │ │ │ │ │ ├── finders.py │ │ │ │ │ ├── handlers.py │ │ │ │ │ ├── management │ │ │ │ │ └── commands │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── collectstatic.cpython-38.pyc │ │ │ │ │ │ ├── findstatic.cpython-38.pyc │ │ │ │ │ │ └── runserver.cpython-38.pyc │ │ │ │ │ │ ├── collectstatic.py │ │ │ │ │ │ ├── findstatic.py │ │ │ │ │ │ └── runserver.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── testing.py │ │ │ │ │ ├── urls.py │ │ │ │ │ ├── utils.py │ │ │ │ │ └── views.py │ │ │ └── shortcuts.py │ │ ├── easy_install.py │ │ ├── kiwisolver.cpython-38-darwin.so │ │ ├── matplotlib-3.2.0-py3.8-nspkg.pth │ │ ├── pylab.py │ │ ├── pyparsing.py │ │ └── six.py │ │ ├── site.py │ │ ├── sre_compile.py │ │ ├── sre_constants.py │ │ ├── sre_parse.py │ │ ├── stat.py │ │ ├── struct.py │ │ ├── tarfile.py │ │ ├── tempfile.py │ │ ├── token.py │ │ ├── tokenize.py │ │ ├── types.py │ │ ├── warnings.py │ │ └── weakref.py └── requirements.txt ├── navbar.html ├── requirements.txt ├── sales_data2.csv └── source_code.pdf /README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | # Django-with-Data-Science 5 | Django with Data Science [Video], published by Packt 6 | -------------------------------------------------------------------------------- /dbg.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/dbg.pdf -------------------------------------------------------------------------------- /django_with_data_science-master/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/.DS_Store -------------------------------------------------------------------------------- /django_with_data_science-master/.Python: -------------------------------------------------------------------------------- 1 | /Library/Frameworks/Python.framework/Versions/3.8/Python -------------------------------------------------------------------------------- /django_with_data_science-master/bin/__pycache__/django-admin.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/bin/__pycache__/django-admin.cpython-38.pyc -------------------------------------------------------------------------------- /django_with_data_science-master/bin/django-admin.py: -------------------------------------------------------------------------------- 1 | #!/Users/lukaszmakinia/Desktop/pandas_django/bin/python3.8 2 | from django.core import management 3 | 4 | if __name__ == "__main__": 5 | management.execute_from_command_line() 6 | -------------------------------------------------------------------------------- /django_with_data_science-master/bin/f2py: -------------------------------------------------------------------------------- 1 | #!/Users/lukaszmakinia/Desktop/pandas_django/bin/python3.8 2 | # -*- coding: utf-8 -*- 3 | import re 4 | import sys 5 | from numpy.f2py.f2py2e import main 6 | if __name__ == '__main__': 7 | sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) 8 | sys.exit(main()) 9 | -------------------------------------------------------------------------------- /django_with_data_science-master/bin/f2py3: -------------------------------------------------------------------------------- 1 | #!/Users/lukaszmakinia/Desktop/pandas_django/bin/python3.8 2 | # -*- coding: utf-8 -*- 3 | import re 4 | import sys 5 | from numpy.f2py.f2py2e import main 6 | if __name__ == '__main__': 7 | sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) 8 | sys.exit(main()) 9 | -------------------------------------------------------------------------------- /django_with_data_science-master/bin/f2py3.8: -------------------------------------------------------------------------------- 1 | #!/Users/lukaszmakinia/Desktop/pandas_django/bin/python3.8 2 | # -*- coding: utf-8 -*- 3 | import re 4 | import sys 5 | from numpy.f2py.f2py2e import main 6 | if __name__ == '__main__': 7 | sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) 8 | sys.exit(main()) 9 | -------------------------------------------------------------------------------- /django_with_data_science-master/bin/pip: -------------------------------------------------------------------------------- 1 | #!/Users/lukaszmakinia/Desktop/pandas_django/bin/python3.8 2 | # -*- coding: utf-8 -*- 3 | import re 4 | import sys 5 | from pip._internal.cli.main import main 6 | if __name__ == '__main__': 7 | sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) 8 | sys.exit(main()) 9 | -------------------------------------------------------------------------------- /django_with_data_science-master/bin/pip3: -------------------------------------------------------------------------------- 1 | #!/Users/lukaszmakinia/Desktop/pandas_django/bin/python3.8 2 | # -*- coding: utf-8 -*- 3 | import re 4 | import sys 5 | from pip._internal.cli.main import main 6 | if __name__ == '__main__': 7 | sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) 8 | sys.exit(main()) 9 | -------------------------------------------------------------------------------- /django_with_data_science-master/bin/pip3.8: -------------------------------------------------------------------------------- 1 | #!/Users/lukaszmakinia/Desktop/pandas_django/bin/python3.8 2 | # -*- coding: utf-8 -*- 3 | import re 4 | import sys 5 | from pip._internal.cli.main import main 6 | if __name__ == '__main__': 7 | sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) 8 | sys.exit(main()) 9 | -------------------------------------------------------------------------------- /django_with_data_science-master/bin/python: -------------------------------------------------------------------------------- 1 | python3.8 -------------------------------------------------------------------------------- /django_with_data_science-master/bin/python3: -------------------------------------------------------------------------------- 1 | python3.8 -------------------------------------------------------------------------------- /django_with_data_science-master/bin/python3.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/bin/python3.8 -------------------------------------------------------------------------------- /django_with_data_science-master/bin/sqlformat: -------------------------------------------------------------------------------- 1 | #!/Users/lukaszmakinia/Desktop/pandas_django/bin/python3.8 2 | # -*- coding: utf-8 -*- 3 | import re 4 | import sys 5 | from sqlparse.__main__ import main 6 | if __name__ == '__main__': 7 | sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) 8 | sys.exit(main()) 9 | -------------------------------------------------------------------------------- /django_with_data_science-master/bin/wheel: -------------------------------------------------------------------------------- 1 | #!/Users/lukaszmakinia/Desktop/pandas_django/bin/python3.8 2 | # -*- coding: utf-8 -*- 3 | import re 4 | import sys 5 | from wheel.cli import main 6 | if __name__ == '__main__': 7 | sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) 8 | sys.exit(main()) 9 | -------------------------------------------------------------------------------- /django_with_data_science-master/include/python3.8: -------------------------------------------------------------------------------- 1 | /Library/Frameworks/Python.framework/Versions/3.8/include/python3.8 -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/LICENSE.txt: -------------------------------------------------------------------------------- 1 | /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/LICENSE.txt -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/__future__.py: -------------------------------------------------------------------------------- 1 | /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/__future__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/_bootlocale.py: -------------------------------------------------------------------------------- 1 | /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/_bootlocale.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/_collections_abc.py: -------------------------------------------------------------------------------- 1 | /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/_collections_abc.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/_dummy_thread.py: -------------------------------------------------------------------------------- 1 | /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/_dummy_thread.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/_weakrefset.py: -------------------------------------------------------------------------------- 1 | /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/_weakrefset.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/abc.py: -------------------------------------------------------------------------------- 1 | /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/abc.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/base64.py: -------------------------------------------------------------------------------- 1 | /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/base64.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/bisect.py: -------------------------------------------------------------------------------- 1 | /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/bisect.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/codecs.py: -------------------------------------------------------------------------------- 1 | /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/codecs.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/collections: -------------------------------------------------------------------------------- 1 | /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/collections -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/config-3.8-darwin: -------------------------------------------------------------------------------- 1 | /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/config-3.8-darwin -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/copy.py: -------------------------------------------------------------------------------- 1 | /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/copy.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/copyreg.py: -------------------------------------------------------------------------------- 1 | /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/copyreg.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/distutils/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/distutils/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/distutils/distutils.cfg: -------------------------------------------------------------------------------- 1 | # This is a config file local to this virtualenv installation 2 | # You may include options that will be used by all distutils commands, 3 | # and by easy_install. For instance: 4 | # 5 | # [easy_install] 6 | # find_links = http://mylocalsite 7 | -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/encodings: -------------------------------------------------------------------------------- 1 | /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/encodings -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/enum.py: -------------------------------------------------------------------------------- 1 | /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/enum.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/fnmatch.py: -------------------------------------------------------------------------------- 1 | /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/fnmatch.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/functools.py: -------------------------------------------------------------------------------- 1 | /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/functools.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/genericpath.py: -------------------------------------------------------------------------------- 1 | /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/genericpath.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/hashlib.py: -------------------------------------------------------------------------------- 1 | /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/hashlib.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/heapq.py: -------------------------------------------------------------------------------- 1 | /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/heapq.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/hmac.py: -------------------------------------------------------------------------------- 1 | /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/hmac.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/imp.py: -------------------------------------------------------------------------------- 1 | /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/imp.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/importlib: -------------------------------------------------------------------------------- 1 | /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/importlib -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/io.py: -------------------------------------------------------------------------------- 1 | /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/io.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/keyword.py: -------------------------------------------------------------------------------- 1 | /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/keyword.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/lib-dynload: -------------------------------------------------------------------------------- 1 | /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/lib-dynload -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/linecache.py: -------------------------------------------------------------------------------- 1 | /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/linecache.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/locale.py: -------------------------------------------------------------------------------- 1 | /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/locale.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/no-global-site-packages.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/no-global-site-packages.txt -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/ntpath.py: -------------------------------------------------------------------------------- 1 | /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/ntpath.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/operator.py: -------------------------------------------------------------------------------- 1 | /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/operator.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/orig-prefix.txt: -------------------------------------------------------------------------------- 1 | /Library/Frameworks/Python.framework/Versions/3.8 -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/os.py: -------------------------------------------------------------------------------- 1 | /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/os.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/posixpath.py: -------------------------------------------------------------------------------- 1 | /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/posixpath.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/random.py: -------------------------------------------------------------------------------- 1 | /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/random.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/re.py: -------------------------------------------------------------------------------- 1 | /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/re.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/readline.so: -------------------------------------------------------------------------------- 1 | /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/lib-dynload/readline.cpython-38-darwin.so -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/reprlib.py: -------------------------------------------------------------------------------- 1 | /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/reprlib.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/rlcompleter.py: -------------------------------------------------------------------------------- 1 | /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/rlcompleter.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/shutil.py: -------------------------------------------------------------------------------- 1 | /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/shutil.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/asgiref-3.2.5.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/asgiref-3.2.5.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.34.2) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/asgiref-3.2.5.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | asgiref 2 | -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/asgiref/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "3.2.5" 2 | -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/asgiref/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/asgiref/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/asgiref/__pycache__/compatibility.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/asgiref/__pycache__/compatibility.cpython-38.pyc -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/asgiref/__pycache__/local.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/asgiref/__pycache__/local.cpython-38.pyc -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/asgiref/__pycache__/server.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/asgiref/__pycache__/server.cpython-38.pyc -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/asgiref/__pycache__/sync.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/asgiref/__pycache__/sync.cpython-38.pyc -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/asgiref/__pycache__/testing.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/asgiref/__pycache__/testing.cpython-38.pyc -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/asgiref/__pycache__/timeout.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/asgiref/__pycache__/timeout.cpython-38.pyc -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/asgiref/__pycache__/wsgi.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/asgiref/__pycache__/wsgi.cpython-38.pyc -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/cycler-0.10.0.dist-info/DESCRIPTION.rst: -------------------------------------------------------------------------------- 1 | UNKNOWN 2 | 3 | 4 | -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/cycler-0.10.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/cycler-0.10.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.29.0) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/cycler-0.10.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | cycler 2 | -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/dateutil/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | try: 3 | from ._version import version as __version__ 4 | except ImportError: 5 | __version__ = 'unknown' 6 | 7 | __all__ = ['easter', 'parser', 'relativedelta', 'rrule', 'tz', 8 | 'utils', 'zoneinfo'] 9 | -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/dateutil/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/dateutil/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/dateutil/__pycache__/_common.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/dateutil/__pycache__/_common.cpython-38.pyc -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/dateutil/__pycache__/_version.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/dateutil/__pycache__/_version.cpython-38.pyc -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/dateutil/__pycache__/easter.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/dateutil/__pycache__/easter.cpython-38.pyc -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/dateutil/__pycache__/relativedelta.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/dateutil/__pycache__/relativedelta.cpython-38.pyc -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/dateutil/__pycache__/rrule.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/dateutil/__pycache__/rrule.cpython-38.pyc -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/dateutil/__pycache__/tzwin.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/dateutil/__pycache__/tzwin.cpython-38.pyc -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/dateutil/__pycache__/utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/dateutil/__pycache__/utils.cpython-38.pyc -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/dateutil/_version.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | # file generated by setuptools_scm 3 | # don't change, don't track in version control 4 | version = '2.8.1' 5 | -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/dateutil/parser/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/dateutil/parser/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/dateutil/parser/__pycache__/_parser.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/dateutil/parser/__pycache__/_parser.cpython-38.pyc -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/dateutil/parser/__pycache__/isoparser.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/dateutil/parser/__pycache__/isoparser.cpython-38.pyc -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/dateutil/tz/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/dateutil/tz/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/dateutil/tz/__pycache__/_common.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/dateutil/tz/__pycache__/_common.cpython-38.pyc -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/dateutil/tz/__pycache__/_factories.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/dateutil/tz/__pycache__/_factories.cpython-38.pyc -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/dateutil/tz/__pycache__/tz.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/dateutil/tz/__pycache__/tz.cpython-38.pyc -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/dateutil/tz/__pycache__/win.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/dateutil/tz/__pycache__/win.cpython-38.pyc -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/dateutil/tzwin.py: -------------------------------------------------------------------------------- 1 | # tzwin has moved to dateutil.tz.win 2 | from .tz.win import * 3 | -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/dateutil/zoneinfo/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/dateutil/zoneinfo/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/dateutil/zoneinfo/__pycache__/rebuild.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/dateutil/zoneinfo/__pycache__/rebuild.cpython-38.pyc -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/dateutil/zoneinfo/dateutil-zoneinfo.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/dateutil/zoneinfo/dateutil-zoneinfo.tar.gz -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/__main__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Invokes django-admin when the django module is run as a script. 3 | 4 | Example: python -m django check 5 | """ 6 | from django.core import management 7 | 8 | if __name__ == "__main__": 9 | management.execute_from_command_line() 10 | -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/apps/__init__.py: -------------------------------------------------------------------------------- 1 | from .config import AppConfig 2 | from .registry import apps 3 | 4 | __all__ = ['AppConfig', 'apps'] 5 | -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/apps/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/apps/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/apps/__pycache__/config.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/apps/__pycache__/config.cpython-38.pyc -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/apps/__pycache__/registry.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/apps/__pycache__/registry.cpython-38.pyc -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/bin/__pycache__/django-admin.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/bin/__pycache__/django-admin.cpython-38.pyc -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/bin/django-admin.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | from django.core import management 3 | 4 | if __name__ == "__main__": 5 | management.execute_from_command_line() 6 | -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/app_template/__init__.py-tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/app_template/__init__.py-tpl -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/app_template/admin.py-tpl: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/app_template/apps.py-tpl: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class {{ camel_case_app_name }}Config(AppConfig): 5 | name = '{{ app_name }}' 6 | -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/app_template/migrations/__init__.py-tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/app_template/migrations/__init__.py-tpl -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/app_template/models.py-tpl: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/app_template/tests.py-tpl: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/app_template/views.py-tpl: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/af/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/af/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/ar/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/ar/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/ar/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/ar/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/ast/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/ast/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/az/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/az/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/az/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/az/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/be/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/be/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/bg/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/bg/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/bg/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/bg/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/bn/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/bn/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/bn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/bn/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/br/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/br/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/bs/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/bs/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/bs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/bs/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/ca/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/ca/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/ca/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/ca/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/cs/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/cs/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/cs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/cs/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/cy/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/cy/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/cy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/cy/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/da/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/da/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/da/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/da/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/de/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/de/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/de/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/de/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/de_CH/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/de_CH/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/dsb/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/dsb/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/el/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/el/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/el/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/el/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/en/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/en/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/en/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/en/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/en_AU/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/en_AU/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/en_AU/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/en_AU/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/en_GB/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/en_GB/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/en_GB/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/en_GB/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/eo/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/eo/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/eo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/eo/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/es/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/es/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/es/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/es/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/es_AR/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/es_AR/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/es_AR/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/es_AR/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/es_CO/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/es_CO/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/es_CO/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/es_CO/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/es_MX/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/es_MX/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/es_MX/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/es_MX/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/es_NI/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/es_NI/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/es_PR/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/es_PR/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/es_VE/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/es_VE/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/et/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/et/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/et/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/et/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/eu/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/eu/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/eu/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/eu/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/fa/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/fa/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/fa/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/fa/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/fi/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/fi/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/fi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/fi/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/fr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/fr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/fr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/fr/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/fy/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/fy/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/fy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/fy/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/ga/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/ga/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/ga/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/ga/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/gd/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/gd/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/gd/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/gd/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/gl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/gl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/gl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/gl/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/he/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/he/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/he/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/he/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/hi/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/hi/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/hi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/hi/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/hr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/hr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/hr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/hr/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/hsb/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/hsb/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/hu/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/hu/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/hu/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/hu/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/hy/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/hy/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/ia/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/ia/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/id/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/id/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/id/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/id/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/io/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/io/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/is/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/is/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/is/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/is/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/it/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/it/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/it/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/it/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/ja/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/ja/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/ja/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/ja/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/ka/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/ka/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/ka/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/ka/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/kab/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/kab/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/kk/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/kk/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/km/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/km/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/km/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/km/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/kn/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/kn/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/kn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/kn/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/ko/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/ko/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/ko/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/ko/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/lb/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/lb/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/lt/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/lt/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/lt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/lt/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/lv/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/lv/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/lv/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/lv/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/mk/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/mk/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/mk/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/mk/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/ml/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/ml/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/ml/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/ml/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/mn/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/mn/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/mn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/mn/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/mr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/mr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/my/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/my/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/nb/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/nb/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/nb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/nb/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/ne/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/ne/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/nl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/nl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/nl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/nl/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/nn/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/nn/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/nn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/nn/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/os/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/os/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/pa/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/pa/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/pl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/pl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/pl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/pl/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/pt/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/pt/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/pt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/pt/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/pt_BR/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/pt_BR/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/pt_BR/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/pt_BR/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/ro/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/ro/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/ro/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/ro/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/ru/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/ru/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/ru/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/ru/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/sk/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/sk/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/sk/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/sk/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/sl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/sl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/sl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/sl/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/sq/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/sq/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/sq/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/sq/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/sr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/sr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/sr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/sr/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/sr_Latn/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/sr_Latn/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/sr_Latn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/sr_Latn/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/sv/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/sv/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/sv/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/sv/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/sw/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/sw/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/ta/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/ta/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/ta/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/ta/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/te/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/te/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/te/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/te/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/th/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/th/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/th/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/th/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/tr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/tr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/tr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/tr/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/tt/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/tt/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/udm/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/udm/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/uk/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/uk/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/uk/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/uk/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/ur/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/ur/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/uz/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/uz/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/uz/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/uz/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/vi/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/vi/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/vi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/vi/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/zh_Hans/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/zh_Hans/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/zh_Hans/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/zh_Hans/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/zh_Hant/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/zh_Hant/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/zh_Hant/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/locale/zh_Hant/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/urls/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/urls/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/urls/__pycache__/i18n.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/urls/__pycache__/i18n.cpython-38.pyc -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/conf/urls/__pycache__/static.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/conf/urls/__pycache__/static.cpython-38.pyc -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/__pycache__/apps.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/__pycache__/apps.cpython-38.pyc -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/__pycache__/forms.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/__pycache__/forms.cpython-38.pyc -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/__pycache__/sites.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/__pycache__/sites.cpython-38.pyc -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/__pycache__/tests.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/__pycache__/tests.cpython-38.pyc -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/__pycache__/utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/__pycache__/utils.cpython-38.pyc -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/af/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/am/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/az/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/be/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/br/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/da/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/de/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/el/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/en/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/es/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/et/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/he/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/id/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/io/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/is/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/it/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/km/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/my/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/os/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/te/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/th/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/migrations/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/static/admin/fonts/README.txt: -------------------------------------------------------------------------------- 1 | Roboto webfont source: https://www.google.com/fonts/specimen/Roboto 2 | WOFF files extracted using https://github.com/majodev/google-webfonts-helper 3 | Weights used in this project: Light (300), Regular (400), Bold (700) 4 | -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/templates/admin/widgets/many_to_many_raw_id.html: -------------------------------------------------------------------------------- 1 | {% include 'admin/widgets/foreign_key_raw_id.html' %} 2 | -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/templates/admin/widgets/radio.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/multiple_input.html" %} 2 | -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/templates/admin/widgets/url.html: -------------------------------------------------------------------------------- 1 | {% if url_valid %}

{{ current_label }} {{ widget.value }}
{{ change_label }} {% endif %}{% include "django/forms/widgets/input.html" %}{% if url_valid %}

{% endif %} 2 | -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/templatetags/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/templatetags/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admin/views/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admindocs/__init__.py: -------------------------------------------------------------------------------- 1 | default_app_config = 'django.contrib.admindocs.apps.AdminDocsConfig' 2 | -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/admindocs/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | from django.utils.translation import gettext_lazy as _ 3 | 4 | 5 | class AdminDocsConfig(AppConfig): 6 | name = 'django.contrib.admindocs' 7 | verbose_name = _("Administrative Documentation") 8 | -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/auth/__pycache__/admin.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/auth/__pycache__/admin.cpython-38.pyc -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/auth/__pycache__/apps.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/auth/__pycache__/apps.cpython-38.pyc -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/auth/__pycache__/checks.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/auth/__pycache__/checks.cpython-38.pyc -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/auth/__pycache__/forms.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/auth/__pycache__/forms.cpython-38.pyc -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/auth/__pycache__/mixins.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/auth/__pycache__/mixins.cpython-38.pyc -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/auth/__pycache__/models.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/auth/__pycache__/models.cpython-38.pyc -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/auth/__pycache__/tokens.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/auth/__pycache__/tokens.cpython-38.pyc -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/auth/__pycache__/urls.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/auth/__pycache__/urls.cpython-38.pyc -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/auth/__pycache__/views.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/auth/__pycache__/views.cpython-38.pyc -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/auth/common-passwords.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/auth/common-passwords.txt.gz -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/auth/handlers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/auth/handlers/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/auth/locale/af/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/auth/locale/az/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/auth/locale/be/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/auth/locale/br/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/auth/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/auth/migrations/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/auth/templates/registration/password_reset_subject.txt: -------------------------------------------------------------------------------- 1 | {% load i18n %}{% autoescape off %} 2 | {% blocktrans %}Password reset on {{ site_name }}{% endblocktrans %} 3 | {% endautoescape %} -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/contenttypes/__init__.py: -------------------------------------------------------------------------------- 1 | default_app_config = 'django.contrib.contenttypes.apps.ContentTypesConfig' 2 | -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/contenttypes/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/contenttypes/migrations/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/flatpages/__init__.py: -------------------------------------------------------------------------------- 1 | default_app_config = 'django.contrib.flatpages.apps.FlatPagesConfig' 2 | -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/flatpages/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | from django.utils.translation import gettext_lazy as _ 3 | 4 | 5 | class FlatPagesConfig(AppConfig): 6 | name = 'django.contrib.flatpages' 7 | verbose_name = _("Flat Pages") 8 | -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/flatpages/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/flatpages/migrations/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/flatpages/templatetags/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/flatpages/templatetags/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/flatpages/urls.py: -------------------------------------------------------------------------------- 1 | from django.contrib.flatpages import views 2 | from django.urls import path 3 | 4 | urlpatterns = [ 5 | path('', views.flatpage, name='django.contrib.flatpages.views.flatpage'), 6 | ] 7 | -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/__init__.py: -------------------------------------------------------------------------------- 1 | default_app_config = 'django.contrib.gis.apps.GISConfig' 2 | -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/__pycache__/apps.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/__pycache__/apps.cpython-38.pyc -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/__pycache__/ptr.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/__pycache__/ptr.cpython-38.pyc -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/db/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/db/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/db/backends/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/db/backends/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/db/backends/base/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/db/backends/base/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/db/backends/mysql/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/db/backends/mysql/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/db/backends/oracle/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/db/backends/oracle/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/db/backends/postgis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/db/backends/postgis/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/db/backends/spatialite/client.py: -------------------------------------------------------------------------------- 1 | from django.db.backends.sqlite3.client import DatabaseClient 2 | 3 | 4 | class SpatiaLiteClient(DatabaseClient): 5 | executable_name = 'spatialite' 6 | -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/db/models/sql/__init__.py: -------------------------------------------------------------------------------- 1 | from django.contrib.gis.db.models.sql.conversion import ( 2 | AreaField, DistanceField, 3 | ) 4 | 5 | __all__ = [ 6 | 'AreaField', 'DistanceField', 7 | ] 8 | -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/gdal/base.py: -------------------------------------------------------------------------------- 1 | from django.contrib.gis.gdal.error import GDALException 2 | from django.contrib.gis.ptr import CPointerBase 3 | 4 | 5 | class GDALBase(CPointerBase): 6 | null_ptr_exception_class = GDALException 7 | -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/gdal/prototypes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/gdal/prototypes/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/gdal/raster/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/gdal/raster/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/geos/base.py: -------------------------------------------------------------------------------- 1 | from django.contrib.gis.geos.error import GEOSException 2 | from django.contrib.gis.ptr import CPointerBase 3 | 4 | 5 | class GEOSBase(CPointerBase): 6 | null_ptr_exception_class = GEOSException 7 | -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/geos/error.py: -------------------------------------------------------------------------------- 1 | class GEOSException(Exception): 2 | "The base GEOS exception, indicates a GEOS-related error." 3 | pass 4 | -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/af/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/af/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/ar/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/ar/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/az/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/az/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/be/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/be/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/bg/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/bg/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/bn/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/bn/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/br/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/br/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/bs/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/bs/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/ca/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/ca/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/cs/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/cs/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/cy/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/cy/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/da/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/da/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/de/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/de/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/el/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/el/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/en/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/en/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/eo/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/eo/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/es/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/es/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/et/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/et/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/eu/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/eu/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/fa/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/fa/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/fi/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/fi/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/fr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/fr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/fy/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/fy/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/ga/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/ga/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/gd/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/gd/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/gl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/gl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/he/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/he/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/hi/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/hi/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/hr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/hr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/hu/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/hu/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/hy/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/hy/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/ia/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/ia/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/id/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/id/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/io/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/io/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/is/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/is/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/it/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/it/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/ja/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/ja/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/ka/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/ka/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/kk/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/kk/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/km/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/km/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/kn/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/kn/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/ko/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/ko/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/lb/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/lb/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/lt/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/lt/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/lv/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/lv/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/mk/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/mk/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/ml/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/ml/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/mn/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/mn/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/mr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/mr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/my/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/my/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/nb/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/nb/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/ne/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/ne/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/nl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/nl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/nn/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/nn/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/os/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/os/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/pa/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/pa/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/pl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/pl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/pt/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/pt/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/ro/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/ro/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/ru/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/ru/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/sk/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/sk/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/sl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/sl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/sq/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/sq/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/sr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/sr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/sv/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/sv/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/sw/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/sw/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/ta/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/ta/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/te/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/te/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/th/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/th/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/tr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/tr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/tt/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/tt/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/uk/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/uk/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/ur/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/ur/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/vi/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/locale/vi/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/serializers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/serializers/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/sitemaps/__init__.py: -------------------------------------------------------------------------------- 1 | # Geo-enabled Sitemap classes. 2 | from django.contrib.gis.sitemaps.kml import KMLSitemap, KMZSitemap 3 | 4 | __all__ = ['KMLSitemap', 'KMZSitemap'] 5 | -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/templates/gis/admin/osm.html: -------------------------------------------------------------------------------- 1 | {% extends "gis/admin/openlayers.html" %} 2 | {% block openlayers %}{% include "gis/admin/osm.js" %}{% endblock %} 3 | -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/gis/templates/gis/admin/osm.js: -------------------------------------------------------------------------------- 1 | {% extends "gis/admin/openlayers.js" %} 2 | {% block base_layer %}new OpenLayers.Layer.OSM("OpenStreetMap (Mapnik)");{% endblock %} 3 | -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/humanize/__init__.py: -------------------------------------------------------------------------------- 1 | default_app_config = 'django.contrib.humanize.apps.HumanizeConfig' 2 | -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/humanize/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | from django.utils.translation import gettext_lazy as _ 3 | 4 | 5 | class HumanizeConfig(AppConfig): 6 | name = 'django.contrib.humanize' 7 | verbose_name = _("Humanize") 8 | -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/humanize/templatetags/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/humanize/templatetags/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/messages/__init__.py: -------------------------------------------------------------------------------- 1 | from django.contrib.messages.api import * # NOQA 2 | from django.contrib.messages.constants import * # NOQA 3 | 4 | default_app_config = 'django.contrib.messages.apps.MessagesConfig' 5 | -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/messages/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | from django.utils.translation import gettext_lazy as _ 3 | 4 | 5 | class MessagesConfig(AppConfig): 6 | name = 'django.contrib.messages' 7 | verbose_name = _("Messages") 8 | -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/postgres/__init__.py: -------------------------------------------------------------------------------- 1 | default_app_config = 'django.contrib.postgres.apps.PostgresConfig' 2 | -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/postgres/aggregates/__init__.py: -------------------------------------------------------------------------------- 1 | from .general import * # NOQA 2 | from .statistics import * # NOQA 3 | -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/postgres/fields/__init__.py: -------------------------------------------------------------------------------- 1 | from .array import * # NOQA 2 | from .citext import * # NOQA 3 | from .hstore import * # NOQA 4 | from .jsonb import * # NOQA 5 | from .ranges import * # NOQA 6 | -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/postgres/fields/utils.py: -------------------------------------------------------------------------------- 1 | class AttributeSetter: 2 | def __init__(self, name, value): 3 | setattr(self, name, value) 4 | -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/postgres/forms/__init__.py: -------------------------------------------------------------------------------- 1 | from .array import * # NOQA 2 | from .hstore import * # NOQA 3 | from .jsonb import * # NOQA 4 | from .ranges import * # NOQA 5 | -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/postgres/jinja2/postgres/widgets/split_array.html: -------------------------------------------------------------------------------- 1 | {% include 'django/forms/widgets/multiwidget.html' %} 2 | -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/postgres/templates/postgres/widgets/split_array.html: -------------------------------------------------------------------------------- 1 | {% include 'django/forms/widgets/multiwidget.html' %} 2 | -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/redirects/__init__.py: -------------------------------------------------------------------------------- 1 | default_app_config = 'django.contrib.redirects.apps.RedirectsConfig' 2 | -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/redirects/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | from django.utils.translation import gettext_lazy as _ 3 | 4 | 5 | class RedirectsConfig(AppConfig): 6 | name = 'django.contrib.redirects' 7 | verbose_name = _("Redirects") 8 | -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/redirects/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/redirects/migrations/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/sessions/__init__.py: -------------------------------------------------------------------------------- 1 | default_app_config = 'django.contrib.sessions.apps.SessionsConfig' 2 | -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/sessions/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | from django.utils.translation import gettext_lazy as _ 3 | 4 | 5 | class SessionsConfig(AppConfig): 6 | name = 'django.contrib.sessions' 7 | verbose_name = _("Sessions") 8 | -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/sessions/backends/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/sessions/backends/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/sessions/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/sessions/migrations/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/sitemaps/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | from django.utils.translation import gettext_lazy as _ 3 | 4 | 5 | class SiteMapsConfig(AppConfig): 6 | name = 'django.contrib.sitemaps' 7 | verbose_name = _("Site Maps") 8 | -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/sites/__init__.py: -------------------------------------------------------------------------------- 1 | default_app_config = 'django.contrib.sites.apps.SitesConfig' 2 | -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/sites/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/django/contrib/sites/migrations/__init__.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/django/contrib/staticfiles/__init__.py: -------------------------------------------------------------------------------- 1 | default_app_config = 'django.contrib.staticfiles.apps.StaticFilesConfig' 2 | -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/easy_install.py: -------------------------------------------------------------------------------- 1 | """Run the EasyInstall command""" 2 | 3 | if __name__ == '__main__': 4 | from setuptools.command.easy_install import main 5 | main() 6 | -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/kiwisolver.cpython-38-darwin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/django_with_data_science-master/lib/python3.8/site-packages/kiwisolver.cpython-38-darwin.so -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/site-packages/pylab.py: -------------------------------------------------------------------------------- 1 | from matplotlib.pylab import * 2 | import matplotlib.pylab 3 | __doc__ = matplotlib.pylab.__doc__ 4 | -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/sre_compile.py: -------------------------------------------------------------------------------- 1 | /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/sre_compile.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/sre_constants.py: -------------------------------------------------------------------------------- 1 | /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/sre_constants.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/sre_parse.py: -------------------------------------------------------------------------------- 1 | /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/sre_parse.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/stat.py: -------------------------------------------------------------------------------- 1 | /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/stat.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/struct.py: -------------------------------------------------------------------------------- 1 | /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/struct.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/tarfile.py: -------------------------------------------------------------------------------- 1 | /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/tarfile.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/tempfile.py: -------------------------------------------------------------------------------- 1 | /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/tempfile.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/token.py: -------------------------------------------------------------------------------- 1 | /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/token.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/tokenize.py: -------------------------------------------------------------------------------- 1 | /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/tokenize.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/types.py: -------------------------------------------------------------------------------- 1 | /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/types.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/warnings.py: -------------------------------------------------------------------------------- 1 | /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/warnings.py -------------------------------------------------------------------------------- /django_with_data_science-master/lib/python3.8/weakref.py: -------------------------------------------------------------------------------- 1 | /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/weakref.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | asgiref==3.2.5 2 | cycler==0.10.0 3 | Django==3.0.4 4 | kiwisolver==1.1.0 5 | matplotlib==3.2.0 6 | numpy==1.18.1 7 | pandas==1.0.1 8 | pyparsing==2.4.6 9 | python-dateutil==2.8.1 10 | pytz==2019.3 11 | scipy==1.4.1 12 | seaborn==0.10.0 13 | six==1.14.0 14 | sqlparse==0.3.1 15 | -------------------------------------------------------------------------------- /source_code.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-with-Data-Science/ff1d08c54f5609138db3d292e107b590de3283e0/source_code.pdf --------------------------------------------------------------------------------