gitextract_f3r5f3x7/ ├── Django-1.5.1/ │ ├── AUTHORS │ ├── INSTALL │ ├── LICENSE │ ├── MANIFEST.in │ ├── PKG-INFO │ ├── README.rst │ ├── django/ │ │ ├── __init__.py │ │ ├── bin/ │ │ │ ├── __init__.py │ │ │ ├── daily_cleanup.py │ │ │ ├── django-2to3.py │ │ │ ├── django-admin.py │ │ │ ├── profiling/ │ │ │ │ ├── __init__.py │ │ │ │ └── gather_profile_stats.py │ │ │ └── unique-messages.py │ │ ├── conf/ │ │ │ ├── __init__.py │ │ │ ├── app_template/ │ │ │ │ ├── __init__.py │ │ │ │ ├── models.py │ │ │ │ ├── tests.py │ │ │ │ └── views.py │ │ │ ├── global_settings.py │ │ │ ├── locale/ │ │ │ │ ├── __init__.py │ │ │ │ ├── af/ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── ar/ │ │ │ │ │ ├── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── formats.py │ │ │ │ ├── az/ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── be/ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── bg/ │ │ │ │ │ ├── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── formats.py │ │ │ │ ├── bn/ │ │ │ │ │ ├── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── formats.py │ │ │ │ ├── br/ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── bs/ │ │ │ │ │ ├── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── formats.py │ │ │ │ ├── ca/ │ │ │ │ │ ├── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── formats.py │ │ │ │ ├── cs/ │ │ │ │ │ ├── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── formats.py │ │ │ │ ├── cy/ │ │ │ │ │ ├── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── formats.py │ │ │ │ ├── da/ │ │ │ │ │ ├── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── formats.py │ │ │ │ ├── de/ │ │ │ │ │ ├── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── formats.py │ │ │ │ ├── de_CH/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── formats.py │ │ │ │ ├── el/ │ │ │ │ │ ├── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── formats.py │ │ │ │ ├── en/ │ │ │ │ │ ├── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── formats.py │ │ │ │ ├── en_GB/ │ │ │ │ │ ├── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── formats.py │ │ │ │ ├── eo/ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── es/ │ │ │ │ │ ├── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── formats.py │ │ │ │ ├── es_AR/ │ │ │ │ │ ├── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── formats.py │ │ │ │ ├── es_MX/ │ │ │ │ │ ├── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── formats.py │ │ │ │ ├── es_NI/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── formats.py │ │ │ │ ├── es_VE/ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── et/ │ │ │ │ │ ├── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── formats.py │ │ │ │ ├── eu/ │ │ │ │ │ ├── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── formats.py │ │ │ │ ├── fa/ │ │ │ │ │ ├── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── formats.py │ │ │ │ ├── fi/ │ │ │ │ │ ├── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── formats.py │ │ │ │ ├── fr/ │ │ │ │ │ ├── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── formats.py │ │ │ │ ├── fy_NL/ │ │ │ │ │ ├── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── formats.py │ │ │ │ ├── ga/ │ │ │ │ │ ├── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── formats.py │ │ │ │ ├── gl/ │ │ │ │ │ ├── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── formats.py │ │ │ │ ├── he/ │ │ │ │ │ ├── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── formats.py │ │ │ │ ├── hi/ │ │ │ │ │ ├── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── formats.py │ │ │ │ ├── hr/ │ │ │ │ │ ├── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── formats.py │ │ │ │ ├── hu/ │ │ │ │ │ ├── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── formats.py │ │ │ │ ├── ia/ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── id/ │ │ │ │ │ ├── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── formats.py │ │ │ │ ├── is/ │ │ │ │ │ ├── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── formats.py │ │ │ │ ├── it/ │ │ │ │ │ ├── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── formats.py │ │ │ │ ├── ja/ │ │ │ │ │ ├── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── formats.py │ │ │ │ ├── ka/ │ │ │ │ │ ├── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── formats.py │ │ │ │ ├── kk/ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── km/ │ │ │ │ │ ├── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── formats.py │ │ │ │ ├── kn/ │ │ │ │ │ ├── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── formats.py │ │ │ │ ├── ko/ │ │ │ │ │ ├── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── formats.py │ │ │ │ ├── lb/ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── lt/ │ │ │ │ │ ├── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── formats.py │ │ │ │ ├── lv/ │ │ │ │ │ ├── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── formats.py │ │ │ │ ├── mk/ │ │ │ │ │ ├── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── formats.py │ │ │ │ ├── ml/ │ │ │ │ │ ├── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── formats.py │ │ │ │ ├── mn/ │ │ │ │ │ ├── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── formats.py │ │ │ │ ├── nb/ │ │ │ │ │ ├── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── formats.py │ │ │ │ ├── ne/ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── nl/ │ │ │ │ │ ├── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── formats.py │ │ │ │ ├── nn/ │ │ │ │ │ ├── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── formats.py │ │ │ │ ├── pa/ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── pl/ │ │ │ │ │ ├── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── formats.py │ │ │ │ ├── pt/ │ │ │ │ │ ├── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── formats.py │ │ │ │ ├── pt_BR/ │ │ │ │ │ ├── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── formats.py │ │ │ │ ├── ro/ │ │ │ │ │ ├── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── formats.py │ │ │ │ ├── ru/ │ │ │ │ │ ├── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── formats.py │ │ │ │ ├── sk/ │ │ │ │ │ ├── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── formats.py │ │ │ │ ├── sl/ │ │ │ │ │ ├── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── formats.py │ │ │ │ ├── sq/ │ │ │ │ │ ├── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── formats.py │ │ │ │ ├── sr/ │ │ │ │ │ ├── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── formats.py │ │ │ │ ├── sr_Latn/ │ │ │ │ │ ├── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── formats.py │ │ │ │ ├── sv/ │ │ │ │ │ ├── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── formats.py │ │ │ │ ├── sw/ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── ta/ │ │ │ │ │ ├── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── formats.py │ │ │ │ ├── te/ │ │ │ │ │ ├── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── formats.py │ │ │ │ ├── th/ │ │ │ │ │ ├── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── formats.py │ │ │ │ ├── tr/ │ │ │ │ │ ├── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── formats.py │ │ │ │ ├── tt/ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── udm/ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── uk/ │ │ │ │ │ ├── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── formats.py │ │ │ │ ├── ur/ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── vi/ │ │ │ │ │ ├── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── formats.py │ │ │ │ ├── zh_CN/ │ │ │ │ │ ├── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── formats.py │ │ │ │ └── zh_TW/ │ │ │ │ ├── LC_MESSAGES/ │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── project_template/ │ │ │ │ ├── manage.py │ │ │ │ └── project_name/ │ │ │ │ ├── __init__.py │ │ │ │ ├── settings.py │ │ │ │ ├── urls.py │ │ │ │ └── wsgi.py │ │ │ └── urls/ │ │ │ ├── __init__.py │ │ │ ├── defaults.py │ │ │ ├── i18n.py │ │ │ ├── shortcut.py │ │ │ └── static.py │ │ ├── contrib/ │ │ │ ├── __init__.py │ │ │ ├── admin/ │ │ │ │ ├── __init__.py │ │ │ │ ├── actions.py │ │ │ │ ├── bin/ │ │ │ │ │ └── compress.py │ │ │ │ ├── filters.py │ │ │ │ ├── forms.py │ │ │ │ ├── helpers.py │ │ │ │ ├── locale/ │ │ │ │ │ ├── af/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ ├── ar/ │ │ │ │ │ │ └── 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 │ │ │ │ │ ├── el/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ ├── en/ │ │ │ │ │ │ └── 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_MX/ │ │ │ │ │ │ └── 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_NL/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ ├── ga/ │ │ │ │ │ │ └── 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 │ │ │ │ │ ├── hu/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ ├── ia/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ ├── id/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ ├── 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 │ │ │ │ │ ├── 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 │ │ │ │ │ ├── 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 │ │ │ │ │ ├── pa/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ ├── pl/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ ├── pt/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ ├── pt_BR/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ ├── ro/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ ├── ru/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ ├── sk/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ ├── sl/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ ├── sq/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ ├── sr/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ ├── sr_Latn/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ ├── sv/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ ├── sw/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ ├── ta/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ ├── te/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ ├── th/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ ├── tr/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ ├── tt/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ ├── udm/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ ├── uk/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ ├── ur/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ ├── vi/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ ├── zh_CN/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ └── zh_TW/ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ ├── django.mo │ │ │ │ │ ├── django.po │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ └── djangojs.po │ │ │ │ ├── models.py │ │ │ │ ├── options.py │ │ │ │ ├── sites.py │ │ │ │ ├── static/ │ │ │ │ │ └── admin/ │ │ │ │ │ ├── css/ │ │ │ │ │ │ ├── base.css │ │ │ │ │ │ ├── changelists.css │ │ │ │ │ │ ├── dashboard.css │ │ │ │ │ │ ├── forms.css │ │ │ │ │ │ ├── ie.css │ │ │ │ │ │ ├── login.css │ │ │ │ │ │ ├── rtl.css │ │ │ │ │ │ └── widgets.css │ │ │ │ │ └── js/ │ │ │ │ │ ├── LICENSE-JQUERY.txt │ │ │ │ │ ├── SelectBox.js │ │ │ │ │ ├── SelectFilter2.js │ │ │ │ │ ├── actions.js │ │ │ │ │ ├── admin/ │ │ │ │ │ │ ├── DateTimeShortcuts.js │ │ │ │ │ │ ├── RelatedObjectLookups.js │ │ │ │ │ │ └── ordering.js │ │ │ │ │ ├── calendar.js │ │ │ │ │ ├── collapse.js │ │ │ │ │ ├── core.js │ │ │ │ │ ├── getElementsBySelector.js │ │ │ │ │ ├── inlines.js │ │ │ │ │ ├── jquery.init.js │ │ │ │ │ ├── jquery.js │ │ │ │ │ ├── prepopulate.js │ │ │ │ │ ├── timeparse.js │ │ │ │ │ └── urlify.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_list.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 │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── invalid_setup.html │ │ │ │ │ │ ├── login.html │ │ │ │ │ │ ├── object_history.html │ │ │ │ │ │ ├── pagination.html │ │ │ │ │ │ ├── prepopulated_fields_js.html │ │ │ │ │ │ ├── search_form.html │ │ │ │ │ │ └── submit_line.html │ │ │ │ │ └── registration/ │ │ │ │ │ ├── logged_out.html │ │ │ │ │ ├── password_change_done.html │ │ │ │ │ ├── password_change_form.html │ │ │ │ │ ├── password_reset_complete.html │ │ │ │ │ ├── password_reset_confirm.html │ │ │ │ │ ├── password_reset_done.html │ │ │ │ │ ├── password_reset_email.html │ │ │ │ │ └── password_reset_form.html │ │ │ │ ├── templatetags/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── admin_list.py │ │ │ │ │ ├── admin_modify.py │ │ │ │ │ ├── admin_static.py │ │ │ │ │ ├── admin_urls.py │ │ │ │ │ └── log.py │ │ │ │ ├── tests.py │ │ │ │ ├── util.py │ │ │ │ ├── validation.py │ │ │ │ ├── views/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── decorators.py │ │ │ │ │ └── main.py │ │ │ │ └── widgets.py │ │ │ ├── admindocs/ │ │ │ │ ├── __init__.py │ │ │ │ ├── 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 │ │ │ │ │ ├── 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 │ │ │ │ │ ├── el/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── en/ │ │ │ │ │ │ └── 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_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 │ │ │ │ │ ├── fy_NL/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── ga/ │ │ │ │ │ │ └── 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 │ │ │ │ │ ├── hu/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── ia/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── id/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── is/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── it/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── ja/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── ka/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── kk/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── km/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── kn/ │ │ │ │ │ │ └── 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 │ │ │ │ │ ├── ml/ │ │ │ │ │ │ └── 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 │ │ │ │ │ ├── nn/ │ │ │ │ │ │ └── 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_CN/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ └── zh_TW/ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── models.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 │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── fields.py │ │ │ │ ├── urls.py │ │ │ │ ├── utils.py │ │ │ │ └── views.py │ │ │ ├── auth/ │ │ │ │ ├── __init__.py │ │ │ │ ├── admin.py │ │ │ │ ├── backends.py │ │ │ │ ├── context_processors.py │ │ │ │ ├── create_superuser.py │ │ │ │ ├── decorators.py │ │ │ │ ├── fixtures/ │ │ │ │ │ ├── authtestdata.json │ │ │ │ │ ├── context-processors-users.xml │ │ │ │ │ ├── custom_user.json │ │ │ │ │ ├── natural.json │ │ │ │ │ └── regular.json │ │ │ │ ├── forms.py │ │ │ │ ├── handlers/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── modwsgi.py │ │ │ │ ├── hashers.py │ │ │ │ ├── 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 │ │ │ │ │ ├── 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 │ │ │ │ │ ├── el/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── en/ │ │ │ │ │ │ └── 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_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 │ │ │ │ │ ├── fy_NL/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── ga/ │ │ │ │ │ │ └── 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 │ │ │ │ │ ├── hu/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── ia/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── id/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── is/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── it/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── ja/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── ka/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── kk/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── km/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── kn/ │ │ │ │ │ │ └── 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 │ │ │ │ │ ├── ml/ │ │ │ │ │ │ └── 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 │ │ │ │ │ ├── nn/ │ │ │ │ │ │ └── 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 │ │ │ │ │ ├── uk/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── ur/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── vi/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── zh_CN/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ └── zh_TW/ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── management/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── commands/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── changepassword.py │ │ │ │ │ └── createsuperuser.py │ │ │ │ ├── middleware.py │ │ │ │ ├── models.py │ │ │ │ ├── signals.py │ │ │ │ ├── templates/ │ │ │ │ │ └── registration/ │ │ │ │ │ └── password_reset_subject.txt │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── auth_backends.py │ │ │ │ │ ├── basic.py │ │ │ │ │ ├── context_processors.py │ │ │ │ │ ├── custom_user.py │ │ │ │ │ ├── decorators.py │ │ │ │ │ ├── forms.py │ │ │ │ │ ├── handlers.py │ │ │ │ │ ├── hashers.py │ │ │ │ │ ├── management.py │ │ │ │ │ ├── models.py │ │ │ │ │ ├── remote_user.py │ │ │ │ │ ├── signals.py │ │ │ │ │ ├── templates/ │ │ │ │ │ │ ├── context_processors/ │ │ │ │ │ │ │ ├── auth_attrs_access.html │ │ │ │ │ │ │ ├── auth_attrs_messages.html │ │ │ │ │ │ │ ├── auth_attrs_no_access.html │ │ │ │ │ │ │ ├── auth_attrs_perm_in_perms.html │ │ │ │ │ │ │ ├── auth_attrs_perms.html │ │ │ │ │ │ │ ├── auth_attrs_test_access.html │ │ │ │ │ │ │ └── auth_attrs_user.html │ │ │ │ │ │ └── registration/ │ │ │ │ │ │ ├── logged_out.html │ │ │ │ │ │ ├── login.html │ │ │ │ │ │ ├── password_change_form.html │ │ │ │ │ │ ├── password_reset_complete.html │ │ │ │ │ │ ├── password_reset_confirm.html │ │ │ │ │ │ ├── password_reset_done.html │ │ │ │ │ │ ├── password_reset_email.html │ │ │ │ │ │ ├── password_reset_form.html │ │ │ │ │ │ └── password_reset_subject.txt │ │ │ │ │ ├── tokens.py │ │ │ │ │ ├── urls.py │ │ │ │ │ ├── urls_admin.py │ │ │ │ │ ├── utils.py │ │ │ │ │ └── views.py │ │ │ │ ├── tokens.py │ │ │ │ ├── urls.py │ │ │ │ └── views.py │ │ │ ├── comments/ │ │ │ │ ├── __init__.py │ │ │ │ ├── admin.py │ │ │ │ ├── feeds.py │ │ │ │ ├── forms.py │ │ │ │ ├── locale/ │ │ │ │ │ ├── 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 │ │ │ │ │ ├── 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 │ │ │ │ │ ├── el/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── en/ │ │ │ │ │ │ └── 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_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 │ │ │ │ │ ├── fy_NL/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── ga/ │ │ │ │ │ │ └── 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 │ │ │ │ │ ├── hu/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── ia/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── id/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── is/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── it/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── ja/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── ka/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── kk/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── km/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── kn/ │ │ │ │ │ │ └── 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 │ │ │ │ │ ├── ml/ │ │ │ │ │ │ └── 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 │ │ │ │ │ ├── nn/ │ │ │ │ │ │ └── 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 │ │ │ │ │ ├── uk/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── ur/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── vi/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── zh_CN/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ └── zh_TW/ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── managers.py │ │ │ │ ├── models.py │ │ │ │ ├── moderation.py │ │ │ │ ├── signals.py │ │ │ │ ├── templates/ │ │ │ │ │ └── comments/ │ │ │ │ │ ├── 400-debug.html │ │ │ │ │ ├── approve.html │ │ │ │ │ ├── approved.html │ │ │ │ │ ├── base.html │ │ │ │ │ ├── delete.html │ │ │ │ │ ├── deleted.html │ │ │ │ │ ├── flag.html │ │ │ │ │ ├── flagged.html │ │ │ │ │ ├── form.html │ │ │ │ │ ├── list.html │ │ │ │ │ ├── posted.html │ │ │ │ │ └── preview.html │ │ │ │ ├── templatetags/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── comments.py │ │ │ │ ├── urls.py │ │ │ │ └── views/ │ │ │ │ ├── __init__.py │ │ │ │ ├── comments.py │ │ │ │ ├── moderation.py │ │ │ │ └── utils.py │ │ │ ├── contenttypes/ │ │ │ │ ├── __init__.py │ │ │ │ ├── generic.py │ │ │ │ ├── locale/ │ │ │ │ │ ├── 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 │ │ │ │ │ ├── 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 │ │ │ │ │ ├── el/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── en/ │ │ │ │ │ │ └── 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_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 │ │ │ │ │ ├── fy_NL/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── ga/ │ │ │ │ │ │ └── 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 │ │ │ │ │ ├── hu/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── ia/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── id/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── is/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── it/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── ja/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── ka/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── kk/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── km/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── kn/ │ │ │ │ │ │ └── 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 │ │ │ │ │ ├── ml/ │ │ │ │ │ │ └── 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 │ │ │ │ │ ├── nn/ │ │ │ │ │ │ └── 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 │ │ │ │ │ ├── uk/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── ur/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── vi/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── zh_CN/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ └── zh_TW/ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── management.py │ │ │ │ ├── models.py │ │ │ │ ├── tests.py │ │ │ │ └── views.py │ │ │ ├── databrowse/ │ │ │ │ ├── __init__.py │ │ │ │ ├── datastructures.py │ │ │ │ ├── models.py │ │ │ │ ├── plugins/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── calendars.py │ │ │ │ │ ├── fieldchoices.py │ │ │ │ │ └── objects.py │ │ │ │ ├── sites.py │ │ │ │ ├── templates/ │ │ │ │ │ └── databrowse/ │ │ │ │ │ ├── base.html │ │ │ │ │ ├── base_site.html │ │ │ │ │ ├── calendar_day.html │ │ │ │ │ ├── calendar_homepage.html │ │ │ │ │ ├── calendar_main.html │ │ │ │ │ ├── calendar_month.html │ │ │ │ │ ├── calendar_year.html │ │ │ │ │ ├── choice_detail.html │ │ │ │ │ ├── choice_list.html │ │ │ │ │ ├── fieldchoice_detail.html │ │ │ │ │ ├── fieldchoice_homepage.html │ │ │ │ │ ├── fieldchoice_list.html │ │ │ │ │ ├── homepage.html │ │ │ │ │ ├── model_detail.html │ │ │ │ │ └── object_detail.html │ │ │ │ ├── tests.py │ │ │ │ ├── urls.py │ │ │ │ └── views.py │ │ │ ├── flatpages/ │ │ │ │ ├── __init__.py │ │ │ │ ├── admin.py │ │ │ │ ├── fixtures/ │ │ │ │ │ ├── example_site.json │ │ │ │ │ └── sample_flatpages.json │ │ │ │ ├── forms.py │ │ │ │ ├── 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 │ │ │ │ │ ├── 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 │ │ │ │ │ ├── el/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── en/ │ │ │ │ │ │ └── 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_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_NL/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── ga/ │ │ │ │ │ │ └── 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 │ │ │ │ │ ├── hu/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── ia/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── id/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── is/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── it/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── ja/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── ka/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── kk/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── km/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── kn/ │ │ │ │ │ │ └── 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 │ │ │ │ │ ├── ml/ │ │ │ │ │ │ └── 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 │ │ │ │ │ ├── nn/ │ │ │ │ │ │ └── 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_CN/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ └── zh_TW/ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── middleware.py │ │ │ │ ├── models.py │ │ │ │ ├── templatetags/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── flatpages.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── csrf.py │ │ │ │ │ ├── forms.py │ │ │ │ │ ├── middleware.py │ │ │ │ │ ├── templates/ │ │ │ │ │ │ ├── 404.html │ │ │ │ │ │ ├── flatpages/ │ │ │ │ │ │ │ └── default.html │ │ │ │ │ │ └── registration/ │ │ │ │ │ │ └── login.html │ │ │ │ │ ├── templatetags.py │ │ │ │ │ ├── urls.py │ │ │ │ │ └── views.py │ │ │ │ ├── urls.py │ │ │ │ └── views.py │ │ │ ├── formtools/ │ │ │ │ ├── __init__.py │ │ │ │ ├── locale/ │ │ │ │ │ ├── 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 │ │ │ │ │ ├── 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 │ │ │ │ │ ├── el/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── en/ │ │ │ │ │ │ └── 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_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 │ │ │ │ │ ├── fy_NL/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── ga/ │ │ │ │ │ │ └── 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 │ │ │ │ │ ├── hu/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── ia/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── id/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── is/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── it/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── ja/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── ka/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── kk/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── km/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── kn/ │ │ │ │ │ │ └── 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 │ │ │ │ │ ├── ml/ │ │ │ │ │ │ └── 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 │ │ │ │ │ ├── nn/ │ │ │ │ │ │ └── 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 │ │ │ │ │ ├── uk/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── ur/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── vi/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── zh_CN/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ └── zh_TW/ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── models.py │ │ │ │ ├── preview.py │ │ │ │ ├── templates/ │ │ │ │ │ └── formtools/ │ │ │ │ │ ├── form.html │ │ │ │ │ ├── preview.html │ │ │ │ │ └── wizard/ │ │ │ │ │ └── wizard_form.html │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── forms.py │ │ │ │ │ ├── templates/ │ │ │ │ │ │ ├── 404.html │ │ │ │ │ │ ├── base.html │ │ │ │ │ │ └── forms/ │ │ │ │ │ │ └── wizard.html │ │ │ │ │ ├── urls.py │ │ │ │ │ └── wizard/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── cookiestorage.py │ │ │ │ │ ├── forms.py │ │ │ │ │ ├── loadstorage.py │ │ │ │ │ ├── namedwizardtests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── forms.py │ │ │ │ │ │ ├── tests.py │ │ │ │ │ │ └── urls.py │ │ │ │ │ ├── sessionstorage.py │ │ │ │ │ ├── storage.py │ │ │ │ │ └── wizardtests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── forms.py │ │ │ │ │ ├── templates/ │ │ │ │ │ │ └── other_wizard_form.html │ │ │ │ │ ├── tests.py │ │ │ │ │ └── urls.py │ │ │ │ ├── utils.py │ │ │ │ └── wizard/ │ │ │ │ ├── __init__.py │ │ │ │ ├── forms.py │ │ │ │ ├── legacy.py │ │ │ │ ├── storage/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── cookie.py │ │ │ │ │ ├── exceptions.py │ │ │ │ │ └── session.py │ │ │ │ └── views.py │ │ │ ├── gis/ │ │ │ │ ├── __init__.py │ │ │ │ ├── admin/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── options.py │ │ │ │ │ └── widgets.py │ │ │ │ ├── db/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── backends/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── adapter.py │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── mysql/ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ │ ├── compiler.py │ │ │ │ │ │ │ ├── creation.py │ │ │ │ │ │ │ ├── introspection.py │ │ │ │ │ │ │ └── operations.py │ │ │ │ │ │ ├── oracle/ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── adapter.py │ │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ │ ├── compiler.py │ │ │ │ │ │ │ ├── creation.py │ │ │ │ │ │ │ ├── introspection.py │ │ │ │ │ │ │ ├── models.py │ │ │ │ │ │ │ └── operations.py │ │ │ │ │ │ ├── postgis/ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── adapter.py │ │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ │ ├── creation.py │ │ │ │ │ │ │ ├── introspection.py │ │ │ │ │ │ │ ├── models.py │ │ │ │ │ │ │ └── operations.py │ │ │ │ │ │ ├── spatialite/ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── adapter.py │ │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ │ ├── client.py │ │ │ │ │ │ │ ├── creation.py │ │ │ │ │ │ │ ├── introspection.py │ │ │ │ │ │ │ ├── models.py │ │ │ │ │ │ │ └── operations.py │ │ │ │ │ │ └── util.py │ │ │ │ │ └── models/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── aggregates.py │ │ │ │ │ ├── fields.py │ │ │ │ │ ├── manager.py │ │ │ │ │ ├── proxy.py │ │ │ │ │ ├── query.py │ │ │ │ │ └── sql/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── aggregates.py │ │ │ │ │ ├── compiler.py │ │ │ │ │ ├── conversion.py │ │ │ │ │ ├── query.py │ │ │ │ │ └── where.py │ │ │ │ ├── feeds.py │ │ │ │ ├── forms/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── fields.py │ │ │ │ ├── gdal/ │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── datasource.py │ │ │ │ │ ├── driver.py │ │ │ │ │ ├── envelope.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── feature.py │ │ │ │ │ ├── field.py │ │ │ │ │ ├── geometries.py │ │ │ │ │ ├── geomtype.py │ │ │ │ │ ├── layer.py │ │ │ │ │ ├── libgdal.py │ │ │ │ │ ├── prototypes/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── ds.py │ │ │ │ │ │ ├── errcheck.py │ │ │ │ │ │ ├── generation.py │ │ │ │ │ │ ├── geom.py │ │ │ │ │ │ └── srs.py │ │ │ │ │ ├── srs.py │ │ │ │ │ └── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_driver.py │ │ │ │ │ ├── test_ds.py │ │ │ │ │ ├── test_envelope.py │ │ │ │ │ ├── test_geom.py │ │ │ │ │ └── test_srs.py │ │ │ │ ├── geoip/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── libgeoip.py │ │ │ │ │ ├── prototypes.py │ │ │ │ │ └── tests.py │ │ │ │ ├── geometry/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── backend/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── geos.py │ │ │ │ │ ├── regex.py │ │ │ │ │ └── test_data.py │ │ │ │ ├── geos/ │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── collections.py │ │ │ │ │ ├── coordseq.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── factory.py │ │ │ │ │ ├── geometry.py │ │ │ │ │ ├── io.py │ │ │ │ │ ├── libgeos.py │ │ │ │ │ ├── linestring.py │ │ │ │ │ ├── mutable_list.py │ │ │ │ │ ├── point.py │ │ │ │ │ ├── polygon.py │ │ │ │ │ ├── prepared.py │ │ │ │ │ ├── prototypes/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── coordseq.py │ │ │ │ │ │ ├── errcheck.py │ │ │ │ │ │ ├── geom.py │ │ │ │ │ │ ├── io.py │ │ │ │ │ │ ├── misc.py │ │ │ │ │ │ ├── predicates.py │ │ │ │ │ │ ├── prepared.py │ │ │ │ │ │ ├── threadsafe.py │ │ │ │ │ │ └── topology.py │ │ │ │ │ └── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_geos.py │ │ │ │ │ ├── test_geos_mutation.py │ │ │ │ │ ├── test_io.py │ │ │ │ │ └── test_mutable_list.py │ │ │ │ ├── locale/ │ │ │ │ │ ├── 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 │ │ │ │ │ ├── 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 │ │ │ │ │ ├── el/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── en/ │ │ │ │ │ │ └── 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_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 │ │ │ │ │ ├── fy_NL/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── ga/ │ │ │ │ │ │ └── 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 │ │ │ │ │ ├── hu/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── ia/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── id/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── is/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── it/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── ja/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── ka/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── kk/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── km/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── kn/ │ │ │ │ │ │ └── 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 │ │ │ │ │ ├── ml/ │ │ │ │ │ │ └── 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 │ │ │ │ │ ├── nn/ │ │ │ │ │ │ └── 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 │ │ │ │ │ ├── uk/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── ur/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── vi/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── zh_CN/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ └── zh_TW/ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── management/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── commands/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── inspectdb.py │ │ │ │ │ └── ogrinspect.py │ │ │ │ ├── maps/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── google/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── gmap.py │ │ │ │ │ │ ├── overlays.py │ │ │ │ │ │ └── zoom.py │ │ │ │ │ └── openlayers/ │ │ │ │ │ └── __init__.py │ │ │ │ ├── measure.py │ │ │ │ ├── models.py │ │ │ │ ├── shortcuts.py │ │ │ │ ├── sitemaps/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── georss.py │ │ │ │ │ ├── kml.py │ │ │ │ │ └── views.py │ │ │ │ ├── templates/ │ │ │ │ │ └── gis/ │ │ │ │ │ ├── admin/ │ │ │ │ │ │ ├── openlayers.html │ │ │ │ │ │ ├── openlayers.js │ │ │ │ │ │ ├── osm.html │ │ │ │ │ │ └── osm.js │ │ │ │ │ ├── google/ │ │ │ │ │ │ ├── google-map.html │ │ │ │ │ │ ├── google-map.js │ │ │ │ │ │ ├── google-multi.js │ │ │ │ │ │ └── google-single.js │ │ │ │ │ ├── kml/ │ │ │ │ │ │ ├── base.kml │ │ │ │ │ │ └── placemarks.kml │ │ │ │ │ └── sitemaps/ │ │ │ │ │ └── geo_sitemap.xml │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── data/ │ │ │ │ │ │ ├── ch-city/ │ │ │ │ │ │ │ ├── ch-city.dbf │ │ │ │ │ │ │ ├── ch-city.prj │ │ │ │ │ │ │ ├── ch-city.shp │ │ │ │ │ │ │ └── ch-city.shx │ │ │ │ │ │ ├── cities/ │ │ │ │ │ │ │ ├── cities.dbf │ │ │ │ │ │ │ ├── cities.prj │ │ │ │ │ │ │ ├── cities.shp │ │ │ │ │ │ │ └── cities.shx │ │ │ │ │ │ ├── counties/ │ │ │ │ │ │ │ ├── counties.dbf │ │ │ │ │ │ │ ├── counties.shp │ │ │ │ │ │ │ └── counties.shx │ │ │ │ │ │ ├── geometries.json │ │ │ │ │ │ ├── interstates/ │ │ │ │ │ │ │ ├── interstates.dbf │ │ │ │ │ │ │ ├── interstates.prj │ │ │ │ │ │ │ ├── interstates.shp │ │ │ │ │ │ │ └── interstates.shx │ │ │ │ │ │ ├── invalid/ │ │ │ │ │ │ │ ├── emptypoints.dbf │ │ │ │ │ │ │ ├── emptypoints.shp │ │ │ │ │ │ │ └── emptypoints.shx │ │ │ │ │ │ ├── test_point/ │ │ │ │ │ │ │ ├── test_point.dbf │ │ │ │ │ │ │ ├── test_point.prj │ │ │ │ │ │ │ ├── test_point.shp │ │ │ │ │ │ │ └── test_point.shx │ │ │ │ │ │ ├── test_poly/ │ │ │ │ │ │ │ ├── test_poly.dbf │ │ │ │ │ │ │ ├── test_poly.prj │ │ │ │ │ │ │ ├── test_poly.shp │ │ │ │ │ │ │ └── test_poly.shx │ │ │ │ │ │ ├── test_vrt/ │ │ │ │ │ │ │ ├── test_vrt.csv │ │ │ │ │ │ │ └── test_vrt.vrt │ │ │ │ │ │ └── texas.dbf │ │ │ │ │ ├── distapp/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── models.py │ │ │ │ │ │ └── tests.py │ │ │ │ │ ├── geo3d/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── models.py │ │ │ │ │ │ ├── tests.py │ │ │ │ │ │ └── views.py │ │ │ │ │ ├── geoadmin/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── models.py │ │ │ │ │ │ ├── tests.py │ │ │ │ │ │ └── urls.py │ │ │ │ │ ├── geoapp/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── feeds.py │ │ │ │ │ │ ├── models.py │ │ │ │ │ │ ├── sitemaps.py │ │ │ │ │ │ ├── test_feeds.py │ │ │ │ │ │ ├── test_regress.py │ │ │ │ │ │ ├── test_sitemaps.py │ │ │ │ │ │ ├── tests.py │ │ │ │ │ │ └── urls.py │ │ │ │ │ ├── geogapp/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── fixtures/ │ │ │ │ │ │ │ └── initial_data.json │ │ │ │ │ │ ├── models.py │ │ │ │ │ │ └── tests.py │ │ │ │ │ ├── inspectapp/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── models.py │ │ │ │ │ │ └── tests.py │ │ │ │ │ ├── layermap/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── models.py │ │ │ │ │ │ └── tests.py │ │ │ │ │ ├── relatedapp/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── models.py │ │ │ │ │ │ └── tests.py │ │ │ │ │ ├── test_geoforms.py │ │ │ │ │ ├── test_measure.py │ │ │ │ │ ├── test_spatialrefsys.py │ │ │ │ │ └── utils.py │ │ │ │ ├── utils/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── geoip.py │ │ │ │ │ ├── layermapping.py │ │ │ │ │ ├── ogrinfo.py │ │ │ │ │ ├── ogrinspect.py │ │ │ │ │ ├── srs.py │ │ │ │ │ └── wkt.py │ │ │ │ └── views.py │ │ │ ├── humanize/ │ │ │ │ ├── __init__.py │ │ │ │ ├── locale/ │ │ │ │ │ ├── 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 │ │ │ │ │ ├── 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 │ │ │ │ │ ├── el/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── en/ │ │ │ │ │ │ └── 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_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 │ │ │ │ │ ├── fy_NL/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── ga/ │ │ │ │ │ │ └── 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 │ │ │ │ │ ├── hu/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── ia/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── id/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── is/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── it/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── ja/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── ka/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── kk/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── km/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── kn/ │ │ │ │ │ │ └── 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 │ │ │ │ │ ├── ml/ │ │ │ │ │ │ └── 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 │ │ │ │ │ ├── nn/ │ │ │ │ │ │ └── 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 │ │ │ │ │ ├── uk/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── ur/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── vi/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── zh_CN/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ └── zh_TW/ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── models.py │ │ │ │ ├── templatetags/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── humanize.py │ │ │ │ └── tests.py │ │ │ ├── localflavor/ │ │ │ │ ├── __init__.py │ │ │ │ ├── ar/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── ar_provinces.py │ │ │ │ │ └── forms.py │ │ │ │ ├── at/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── at_states.py │ │ │ │ │ └── forms.py │ │ │ │ ├── au/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── au_states.py │ │ │ │ │ ├── forms.py │ │ │ │ │ └── models.py │ │ │ │ ├── be/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── be_provinces.py │ │ │ │ │ ├── be_regions.py │ │ │ │ │ └── forms.py │ │ │ │ ├── br/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── br_states.py │ │ │ │ │ └── forms.py │ │ │ │ ├── ca/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── ca_provinces.py │ │ │ │ │ └── forms.py │ │ │ │ ├── ch/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── ch_states.py │ │ │ │ │ └── forms.py │ │ │ │ ├── cl/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── cl_regions.py │ │ │ │ │ └── forms.py │ │ │ │ ├── cn/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── cn_provinces.py │ │ │ │ │ └── forms.py │ │ │ │ ├── co/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── co_departments.py │ │ │ │ │ └── forms.py │ │ │ │ ├── cz/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── cz_regions.py │ │ │ │ │ └── forms.py │ │ │ │ ├── de/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── de_states.py │ │ │ │ │ └── forms.py │ │ │ │ ├── ec/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── ec_provinces.py │ │ │ │ │ └── forms.py │ │ │ │ ├── es/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── es_provinces.py │ │ │ │ │ ├── es_regions.py │ │ │ │ │ └── forms.py │ │ │ │ ├── fi/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── fi_municipalities.py │ │ │ │ │ └── forms.py │ │ │ │ ├── fr/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── forms.py │ │ │ │ │ └── fr_department.py │ │ │ │ ├── gb/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── forms.py │ │ │ │ │ └── gb_regions.py │ │ │ │ ├── generic/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── forms.py │ │ │ │ ├── hk/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── forms.py │ │ │ │ ├── hr/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── forms.py │ │ │ │ │ └── hr_choices.py │ │ │ │ ├── id/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── forms.py │ │ │ │ │ └── id_choices.py │ │ │ │ ├── ie/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── forms.py │ │ │ │ │ └── ie_counties.py │ │ │ │ ├── il/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── forms.py │ │ │ │ ├── in_/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── forms.py │ │ │ │ │ └── in_states.py │ │ │ │ ├── is_/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── forms.py │ │ │ │ │ └── is_postalcodes.py │ │ │ │ ├── it/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── forms.py │ │ │ │ │ ├── it_province.py │ │ │ │ │ ├── it_region.py │ │ │ │ │ └── util.py │ │ │ │ ├── jp/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── forms.py │ │ │ │ │ └── jp_prefectures.py │ │ │ │ ├── kw/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── forms.py │ │ │ │ ├── locale/ │ │ │ │ │ ├── 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 │ │ │ │ │ ├── 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 │ │ │ │ │ ├── da/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── de/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── el/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── en/ │ │ │ │ │ │ └── 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_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 │ │ │ │ │ ├── fy_NL/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── ga/ │ │ │ │ │ │ └── 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 │ │ │ │ │ ├── hu/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── ia/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── id/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── is/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── it/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── ja/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── ka/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── 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 │ │ │ │ │ ├── nl/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── nn/ │ │ │ │ │ │ └── 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 │ │ │ │ │ ├── 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 │ │ │ │ │ ├── te/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── th/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── tr/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── uk/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── vi/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── zh_CN/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ └── zh_TW/ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── mk/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── forms.py │ │ │ │ │ ├── mk_choices.py │ │ │ │ │ └── models.py │ │ │ │ ├── mx/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── forms.py │ │ │ │ │ ├── models.py │ │ │ │ │ └── mx_states.py │ │ │ │ ├── nl/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── forms.py │ │ │ │ │ └── nl_provinces.py │ │ │ │ ├── no/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── forms.py │ │ │ │ │ └── no_municipalities.py │ │ │ │ ├── pe/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── forms.py │ │ │ │ │ └── pe_region.py │ │ │ │ ├── pl/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── forms.py │ │ │ │ │ ├── pl_administrativeunits.py │ │ │ │ │ └── pl_voivodeships.py │ │ │ │ ├── pt/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── forms.py │ │ │ │ ├── py/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── forms.py │ │ │ │ │ └── py_department.py │ │ │ │ ├── ro/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── forms.py │ │ │ │ │ └── ro_counties.py │ │ │ │ ├── ru/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── forms.py │ │ │ │ │ └── ru_regions.py │ │ │ │ ├── se/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── forms.py │ │ │ │ │ ├── se_counties.py │ │ │ │ │ └── utils.py │ │ │ │ ├── si/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── forms.py │ │ │ │ │ └── si_postalcodes.py │ │ │ │ ├── sk/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── forms.py │ │ │ │ │ ├── sk_districts.py │ │ │ │ │ └── sk_regions.py │ │ │ │ ├── tr/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── forms.py │ │ │ │ │ └── tr_provinces.py │ │ │ │ ├── uk/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── forms.py │ │ │ │ │ └── uk_regions.py │ │ │ │ ├── us/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── forms.py │ │ │ │ │ ├── models.py │ │ │ │ │ └── us_states.py │ │ │ │ ├── uy/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── forms.py │ │ │ │ │ ├── util.py │ │ │ │ │ └── uy_departaments.py │ │ │ │ └── za/ │ │ │ │ ├── __init__.py │ │ │ │ ├── forms.py │ │ │ │ └── za_provinces.py │ │ │ ├── markup/ │ │ │ │ ├── __init__.py │ │ │ │ ├── models.py │ │ │ │ ├── templatetags/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── markup.py │ │ │ │ └── tests.py │ │ │ ├── messages/ │ │ │ │ ├── __init__.py │ │ │ │ ├── api.py │ │ │ │ ├── constants.py │ │ │ │ ├── context_processors.py │ │ │ │ ├── locale/ │ │ │ │ │ ├── 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 │ │ │ │ │ ├── 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 │ │ │ │ │ ├── el/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── en/ │ │ │ │ │ │ └── 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_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 │ │ │ │ │ ├── fy_NL/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── ga/ │ │ │ │ │ │ └── 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 │ │ │ │ │ ├── hu/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── ia/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── id/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── is/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── it/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── ja/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── ka/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── kk/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── km/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── kn/ │ │ │ │ │ │ └── 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 │ │ │ │ │ ├── ml/ │ │ │ │ │ │ └── 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 │ │ │ │ │ ├── nn/ │ │ │ │ │ │ └── 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 │ │ │ │ │ ├── uk/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── ur/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── vi/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── zh_CN/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ └── zh_TW/ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── middleware.py │ │ │ │ ├── models.py │ │ │ │ ├── storage/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── cookie.py │ │ │ │ │ ├── fallback.py │ │ │ │ │ └── session.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── cookie.py │ │ │ │ │ ├── fallback.py │ │ │ │ │ ├── middleware.py │ │ │ │ │ ├── session.py │ │ │ │ │ └── urls.py │ │ │ │ └── utils.py │ │ │ ├── redirects/ │ │ │ │ ├── __init__.py │ │ │ │ ├── admin.py │ │ │ │ ├── locale/ │ │ │ │ │ ├── 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 │ │ │ │ │ ├── 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 │ │ │ │ │ ├── el/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── en/ │ │ │ │ │ │ └── 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_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 │ │ │ │ │ ├── fy_NL/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── ga/ │ │ │ │ │ │ └── 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 │ │ │ │ │ ├── hu/ │ │ │ │ │ │ └── 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 │ │ │ │ │ ├── km/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── kn/ │ │ │ │ │ │ └── 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 │ │ │ │ │ ├── ml/ │ │ │ │ │ │ └── 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 │ │ │ │ │ ├── nn/ │ │ │ │ │ │ └── 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 │ │ │ │ │ ├── uk/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── ur/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── vi/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── zh_CN/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ └── zh_TW/ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── middleware.py │ │ │ │ ├── models.py │ │ │ │ └── tests.py │ │ │ ├── sessions/ │ │ │ │ ├── __init__.py │ │ │ │ ├── backends/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── cache.py │ │ │ │ │ ├── cached_db.py │ │ │ │ │ ├── db.py │ │ │ │ │ ├── file.py │ │ │ │ │ └── signed_cookies.py │ │ │ │ ├── locale/ │ │ │ │ │ ├── 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 │ │ │ │ │ ├── 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 │ │ │ │ │ ├── el/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── en/ │ │ │ │ │ │ └── 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_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 │ │ │ │ │ ├── fy_NL/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── ga/ │ │ │ │ │ │ └── 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 │ │ │ │ │ ├── hu/ │ │ │ │ │ │ └── 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 │ │ │ │ │ ├── km/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── kn/ │ │ │ │ │ │ └── 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 │ │ │ │ │ ├── ml/ │ │ │ │ │ │ └── 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 │ │ │ │ │ ├── nn/ │ │ │ │ │ │ └── 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 │ │ │ │ │ ├── uk/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── ur/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── vi/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── zh_CN/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ └── zh_TW/ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── management/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── commands/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── clearsessions.py │ │ │ │ ├── middleware.py │ │ │ │ ├── models.py │ │ │ │ └── tests.py │ │ │ ├── sitemaps/ │ │ │ │ ├── __init__.py │ │ │ │ ├── management/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── commands/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── ping_google.py │ │ │ │ ├── models.py │ │ │ │ ├── templates/ │ │ │ │ │ ├── sitemap.xml │ │ │ │ │ └── sitemap_index.xml │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── flatpages.py │ │ │ │ │ ├── generic.py │ │ │ │ │ ├── http.py │ │ │ │ │ ├── https.py │ │ │ │ │ ├── templates/ │ │ │ │ │ │ ├── custom_sitemap.xml │ │ │ │ │ │ └── custom_sitemap_index.xml │ │ │ │ │ └── urls/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── http.py │ │ │ │ │ └── https.py │ │ │ │ └── views.py │ │ │ ├── sites/ │ │ │ │ ├── __init__.py │ │ │ │ ├── admin.py │ │ │ │ ├── locale/ │ │ │ │ │ ├── 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 │ │ │ │ │ ├── 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 │ │ │ │ │ ├── el/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── en/ │ │ │ │ │ │ └── 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_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 │ │ │ │ │ ├── fy_NL/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── ga/ │ │ │ │ │ │ └── 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 │ │ │ │ │ ├── hu/ │ │ │ │ │ │ └── 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 │ │ │ │ │ ├── km/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── kn/ │ │ │ │ │ │ └── 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 │ │ │ │ │ ├── ml/ │ │ │ │ │ │ └── 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 │ │ │ │ │ ├── nn/ │ │ │ │ │ │ └── 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 │ │ │ │ │ ├── uk/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── ur/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── vi/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── zh_CN/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ └── zh_TW/ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── management.py │ │ │ │ ├── managers.py │ │ │ │ ├── models.py │ │ │ │ └── tests.py │ │ │ ├── staticfiles/ │ │ │ │ ├── __init__.py │ │ │ │ ├── finders.py │ │ │ │ ├── handlers.py │ │ │ │ ├── management/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── commands/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── collectstatic.py │ │ │ │ │ ├── findstatic.py │ │ │ │ │ └── runserver.py │ │ │ │ ├── models.py │ │ │ │ ├── storage.py │ │ │ │ ├── templatetags/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── staticfiles.py │ │ │ │ ├── urls.py │ │ │ │ ├── utils.py │ │ │ │ └── views.py │ │ │ ├── syndication/ │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ └── webdesign/ │ │ │ ├── __init__.py │ │ │ ├── lorem_ipsum.py │ │ │ ├── models.py │ │ │ ├── templatetags/ │ │ │ │ ├── __init__.py │ │ │ │ └── webdesign.py │ │ │ └── tests.py │ │ ├── core/ │ │ │ ├── __init__.py │ │ │ ├── cache/ │ │ │ │ ├── __init__.py │ │ │ │ └── backends/ │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── db.py │ │ │ │ ├── dummy.py │ │ │ │ ├── filebased.py │ │ │ │ ├── locmem.py │ │ │ │ └── memcached.py │ │ │ ├── context_processors.py │ │ │ ├── exceptions.py │ │ │ ├── files/ │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── images.py │ │ │ │ ├── locks.py │ │ │ │ ├── move.py │ │ │ │ ├── storage.py │ │ │ │ ├── temp.py │ │ │ │ ├── uploadedfile.py │ │ │ │ ├── uploadhandler.py │ │ │ │ └── utils.py │ │ │ ├── handlers/ │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ └── wsgi.py │ │ │ ├── mail/ │ │ │ │ ├── __init__.py │ │ │ │ ├── backends/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── console.py │ │ │ │ │ ├── dummy.py │ │ │ │ │ ├── filebased.py │ │ │ │ │ ├── locmem.py │ │ │ │ │ └── smtp.py │ │ │ │ ├── message.py │ │ │ │ └── utils.py │ │ │ ├── management/ │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── color.py │ │ │ │ ├── commands/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── cleanup.py │ │ │ │ │ ├── compilemessages.py │ │ │ │ │ ├── createcachetable.py │ │ │ │ │ ├── dbshell.py │ │ │ │ │ ├── diffsettings.py │ │ │ │ │ ├── dumpdata.py │ │ │ │ │ ├── flush.py │ │ │ │ │ ├── inspectdb.py │ │ │ │ │ ├── loaddata.py │ │ │ │ │ ├── makemessages.py │ │ │ │ │ ├── runfcgi.py │ │ │ │ │ ├── runserver.py │ │ │ │ │ ├── shell.py │ │ │ │ │ ├── sql.py │ │ │ │ │ ├── sqlall.py │ │ │ │ │ ├── sqlclear.py │ │ │ │ │ ├── sqlcustom.py │ │ │ │ │ ├── sqlflush.py │ │ │ │ │ ├── sqlindexes.py │ │ │ │ │ ├── sqlinitialdata.py │ │ │ │ │ ├── sqlsequencereset.py │ │ │ │ │ ├── startapp.py │ │ │ │ │ ├── startproject.py │ │ │ │ │ ├── syncdb.py │ │ │ │ │ ├── test.py │ │ │ │ │ ├── testserver.py │ │ │ │ │ └── validate.py │ │ │ │ ├── sql.py │ │ │ │ ├── templates.py │ │ │ │ └── validation.py │ │ │ ├── paginator.py │ │ │ ├── serializers/ │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── json.py │ │ │ │ ├── python.py │ │ │ │ ├── pyyaml.py │ │ │ │ └── xml_serializer.py │ │ │ ├── servers/ │ │ │ │ ├── __init__.py │ │ │ │ ├── basehttp.py │ │ │ │ └── fastcgi.py │ │ │ ├── signals.py │ │ │ ├── signing.py │ │ │ ├── urlresolvers.py │ │ │ ├── validators.py │ │ │ ├── wsgi.py │ │ │ └── xheaders.py │ │ ├── db/ │ │ │ ├── __init__.py │ │ │ ├── backends/ │ │ │ │ ├── __init__.py │ │ │ │ ├── creation.py │ │ │ │ ├── dummy/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── base.py │ │ │ │ ├── mysql/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── client.py │ │ │ │ │ ├── compiler.py │ │ │ │ │ ├── creation.py │ │ │ │ │ ├── introspection.py │ │ │ │ │ └── validation.py │ │ │ │ ├── oracle/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── client.py │ │ │ │ │ ├── compiler.py │ │ │ │ │ ├── creation.py │ │ │ │ │ └── introspection.py │ │ │ │ ├── postgresql_psycopg2/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── client.py │ │ │ │ │ ├── creation.py │ │ │ │ │ ├── introspection.py │ │ │ │ │ ├── operations.py │ │ │ │ │ └── version.py │ │ │ │ ├── signals.py │ │ │ │ ├── sqlite3/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── client.py │ │ │ │ │ ├── creation.py │ │ │ │ │ └── introspection.py │ │ │ │ └── util.py │ │ │ ├── models/ │ │ │ │ ├── __init__.py │ │ │ │ ├── aggregates.py │ │ │ │ ├── base.py │ │ │ │ ├── constants.py │ │ │ │ ├── deletion.py │ │ │ │ ├── expressions.py │ │ │ │ ├── fields/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── files.py │ │ │ │ │ ├── proxy.py │ │ │ │ │ ├── related.py │ │ │ │ │ └── subclassing.py │ │ │ │ ├── loading.py │ │ │ │ ├── manager.py │ │ │ │ ├── options.py │ │ │ │ ├── query.py │ │ │ │ ├── query_utils.py │ │ │ │ ├── related.py │ │ │ │ ├── signals.py │ │ │ │ └── sql/ │ │ │ │ ├── __init__.py │ │ │ │ ├── aggregates.py │ │ │ │ ├── compiler.py │ │ │ │ ├── constants.py │ │ │ │ ├── datastructures.py │ │ │ │ ├── expressions.py │ │ │ │ ├── query.py │ │ │ │ ├── subqueries.py │ │ │ │ └── where.py │ │ │ ├── transaction.py │ │ │ └── utils.py │ │ ├── dispatch/ │ │ │ ├── __init__.py │ │ │ ├── dispatcher.py │ │ │ ├── license.txt │ │ │ └── saferef.py │ │ ├── forms/ │ │ │ ├── __init__.py │ │ │ ├── extras/ │ │ │ │ ├── __init__.py │ │ │ │ └── widgets.py │ │ │ ├── fields.py │ │ │ ├── forms.py │ │ │ ├── formsets.py │ │ │ ├── models.py │ │ │ ├── util.py │ │ │ └── widgets.py │ │ ├── http/ │ │ │ ├── __init__.py │ │ │ ├── cookie.py │ │ │ ├── multipartparser.py │ │ │ ├── request.py │ │ │ ├── response.py │ │ │ └── utils.py │ │ ├── middleware/ │ │ │ ├── __init__.py │ │ │ ├── cache.py │ │ │ ├── clickjacking.py │ │ │ ├── common.py │ │ │ ├── csrf.py │ │ │ ├── doc.py │ │ │ ├── gzip.py │ │ │ ├── http.py │ │ │ ├── locale.py │ │ │ └── transaction.py │ │ ├── shortcuts/ │ │ │ └── __init__.py │ │ ├── template/ │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── context.py │ │ │ ├── debug.py │ │ │ ├── defaultfilters.py │ │ │ ├── defaulttags.py │ │ │ ├── loader.py │ │ │ ├── loader_tags.py │ │ │ ├── loaders/ │ │ │ │ ├── __init__.py │ │ │ │ ├── app_directories.py │ │ │ │ ├── cached.py │ │ │ │ ├── eggs.py │ │ │ │ └── filesystem.py │ │ │ ├── response.py │ │ │ └── smartif.py │ │ ├── templatetags/ │ │ │ ├── __init__.py │ │ │ ├── cache.py │ │ │ ├── future.py │ │ │ ├── i18n.py │ │ │ ├── l10n.py │ │ │ ├── static.py │ │ │ └── tz.py │ │ ├── test/ │ │ │ ├── __init__.py │ │ │ ├── _doctest.py │ │ │ ├── client.py │ │ │ ├── html.py │ │ │ ├── signals.py │ │ │ ├── simple.py │ │ │ ├── testcases.py │ │ │ └── utils.py │ │ ├── utils/ │ │ │ ├── 2to3_fixes/ │ │ │ │ ├── __init__.py │ │ │ │ └── fix_unicode.py │ │ │ ├── __init__.py │ │ │ ├── _os.py │ │ │ ├── archive.py │ │ │ ├── autoreload.py │ │ │ ├── baseconv.py │ │ │ ├── cache.py │ │ │ ├── checksums.py │ │ │ ├── copycompat.py │ │ │ ├── crypto.py │ │ │ ├── daemonize.py │ │ │ ├── datastructures.py │ │ │ ├── dateformat.py │ │ │ ├── dateparse.py │ │ │ ├── dates.py │ │ │ ├── datetime_safe.py │ │ │ ├── decorators.py │ │ │ ├── dictconfig.py │ │ │ ├── encoding.py │ │ │ ├── feedgenerator.py │ │ │ ├── formats.py │ │ │ ├── functional.py │ │ │ ├── hashcompat.py │ │ │ ├── html.py │ │ │ ├── html_parser.py │ │ │ ├── http.py │ │ │ ├── importlib.py │ │ │ ├── ipv6.py │ │ │ ├── itercompat.py │ │ │ ├── jslex.py │ │ │ ├── log.py │ │ │ ├── module_loading.py │ │ │ ├── numberformat.py │ │ │ ├── regex_helper.py │ │ │ ├── safestring.py │ │ │ ├── simplejson.py │ │ │ ├── six.py │ │ │ ├── synch.py │ │ │ ├── termcolors.py │ │ │ ├── text.py │ │ │ ├── timesince.py │ │ │ ├── timezone.py │ │ │ ├── translation/ │ │ │ │ ├── __init__.py │ │ │ │ ├── trans_null.py │ │ │ │ └── trans_real.py │ │ │ ├── tree.py │ │ │ ├── tzinfo.py │ │ │ ├── unittest/ │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── case.py │ │ │ │ ├── collector.py │ │ │ │ ├── compatibility.py │ │ │ │ ├── loader.py │ │ │ │ ├── main.py │ │ │ │ ├── result.py │ │ │ │ ├── runner.py │ │ │ │ ├── signals.py │ │ │ │ ├── suite.py │ │ │ │ └── util.py │ │ │ ├── version.py │ │ │ └── xmlutils.py │ │ └── views/ │ │ ├── __init__.py │ │ ├── csrf.py │ │ ├── debug.py │ │ ├── decorators/ │ │ │ ├── __init__.py │ │ │ ├── cache.py │ │ │ ├── clickjacking.py │ │ │ ├── csrf.py │ │ │ ├── debug.py │ │ │ ├── gzip.py │ │ │ ├── http.py │ │ │ └── vary.py │ │ ├── defaults.py │ │ ├── generic/ │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── dates.py │ │ │ ├── detail.py │ │ │ ├── edit.py │ │ │ └── list.py │ │ ├── i18n.py │ │ └── static.py │ ├── docs/ │ │ ├── Makefile │ │ ├── README │ │ ├── _ext/ │ │ │ ├── applyxrefs.py │ │ │ ├── djangodocs.py │ │ │ └── literals_to_xrefs.py │ │ ├── _theme/ │ │ │ └── djangodocs/ │ │ │ ├── genindex.html │ │ │ ├── layout.html │ │ │ ├── modindex.html │ │ │ ├── search.html │ │ │ ├── static/ │ │ │ │ ├── default.css │ │ │ │ ├── djangodocs.css │ │ │ │ ├── homepage.css │ │ │ │ └── reset-fonts-grids.css │ │ │ └── theme.conf │ │ ├── conf.py │ │ ├── contents.txt │ │ ├── faq/ │ │ │ ├── admin.txt │ │ │ ├── contributing.txt │ │ │ ├── general.txt │ │ │ ├── help.txt │ │ │ ├── index.txt │ │ │ ├── install.txt │ │ │ ├── models.txt │ │ │ ├── troubleshooting.txt │ │ │ └── usage.txt │ │ ├── glossary.txt │ │ ├── howto/ │ │ │ ├── auth-remote-user.txt │ │ │ ├── custom-file-storage.txt │ │ │ ├── custom-management-commands.txt │ │ │ ├── custom-model-fields.txt │ │ │ ├── custom-template-tags.txt │ │ │ ├── deployment/ │ │ │ │ ├── fastcgi.txt │ │ │ │ ├── index.txt │ │ │ │ └── wsgi/ │ │ │ │ ├── apache-auth.txt │ │ │ │ ├── gunicorn.txt │ │ │ │ ├── index.txt │ │ │ │ ├── modwsgi.txt │ │ │ │ └── uwsgi.txt │ │ │ ├── error-reporting.txt │ │ │ ├── index.txt │ │ │ ├── initial-data.txt │ │ │ ├── jython.txt │ │ │ ├── legacy-databases.txt │ │ │ ├── outputting-csv.txt │ │ │ ├── outputting-pdf.txt │ │ │ └── static-files.txt │ │ ├── index.txt │ │ ├── internals/ │ │ │ ├── committers.txt │ │ │ ├── contributing/ │ │ │ │ ├── bugs-and-features.txt │ │ │ │ ├── committing-code.txt │ │ │ │ ├── index.txt │ │ │ │ ├── localizing.txt │ │ │ │ ├── new-contributors.txt │ │ │ │ ├── triaging-tickets.txt │ │ │ │ ├── writing-code/ │ │ │ │ │ ├── coding-style.txt │ │ │ │ │ ├── index.txt │ │ │ │ │ ├── submitting-patches.txt │ │ │ │ │ ├── unit-tests.txt │ │ │ │ │ └── working-with-git.txt │ │ │ │ └── writing-documentation.txt │ │ │ ├── deprecation.txt │ │ │ ├── git.txt │ │ │ ├── index.txt │ │ │ ├── release-process.txt │ │ │ └── security.txt │ │ ├── intro/ │ │ │ ├── contributing.txt │ │ │ ├── index.txt │ │ │ ├── install.txt │ │ │ ├── overview.txt │ │ │ ├── reusable-apps.txt │ │ │ ├── tutorial01.txt │ │ │ ├── tutorial02.txt │ │ │ ├── tutorial03.txt │ │ │ ├── tutorial04.txt │ │ │ ├── tutorial05.txt │ │ │ └── whatsnext.txt │ │ ├── make.bat │ │ ├── man/ │ │ │ ├── daily_cleanup.1 │ │ │ ├── django-admin.1 │ │ │ └── gather_profile_stats.1 │ │ ├── misc/ │ │ │ ├── api-stability.txt │ │ │ ├── design-philosophies.txt │ │ │ ├── distributions.txt │ │ │ └── index.txt │ │ ├── ref/ │ │ │ ├── class-based-views/ │ │ │ │ ├── base.txt │ │ │ │ ├── flattened-index.txt │ │ │ │ ├── generic-date-based.txt │ │ │ │ ├── generic-display.txt │ │ │ │ ├── generic-editing.txt │ │ │ │ ├── index.txt │ │ │ │ ├── mixins-date-based.txt │ │ │ │ ├── mixins-editing.txt │ │ │ │ ├── mixins-multiple-object.txt │ │ │ │ ├── mixins-simple.txt │ │ │ │ ├── mixins-single-object.txt │ │ │ │ └── mixins.txt │ │ │ ├── clickjacking.txt │ │ │ ├── contrib/ │ │ │ │ ├── admin/ │ │ │ │ │ ├── actions.txt │ │ │ │ │ ├── admindocs.txt │ │ │ │ │ └── index.txt │ │ │ │ ├── auth.txt │ │ │ │ ├── comments/ │ │ │ │ │ ├── custom.txt │ │ │ │ │ ├── example.txt │ │ │ │ │ ├── forms.txt │ │ │ │ │ ├── index.txt │ │ │ │ │ ├── models.txt │ │ │ │ │ ├── moderation.txt │ │ │ │ │ ├── settings.txt │ │ │ │ │ └── signals.txt │ │ │ │ ├── contenttypes.txt │ │ │ │ ├── csrf.txt │ │ │ │ ├── databrowse.txt │ │ │ │ ├── flatpages.txt │ │ │ │ ├── formtools/ │ │ │ │ │ ├── form-preview.txt │ │ │ │ │ ├── form-wizard.txt │ │ │ │ │ └── index.txt │ │ │ │ ├── gis/ │ │ │ │ │ ├── admin.txt │ │ │ │ │ ├── commands.txt │ │ │ │ │ ├── db-api.txt │ │ │ │ │ ├── deployment.txt │ │ │ │ │ ├── feeds.txt │ │ │ │ │ ├── gdal.txt │ │ │ │ │ ├── geoip.txt │ │ │ │ │ ├── geoquerysets.txt │ │ │ │ │ ├── geos.txt │ │ │ │ │ ├── index.txt │ │ │ │ │ ├── install/ │ │ │ │ │ │ ├── create_template_postgis-1.3.sh │ │ │ │ │ │ ├── create_template_postgis-1.4.sh │ │ │ │ │ │ ├── create_template_postgis-1.5.sh │ │ │ │ │ │ ├── create_template_postgis-debian.sh │ │ │ │ │ │ ├── geodjango_setup.bat │ │ │ │ │ │ ├── geolibs.txt │ │ │ │ │ │ ├── index.txt │ │ │ │ │ │ ├── postgis.txt │ │ │ │ │ │ └── spatialite.txt │ │ │ │ │ ├── layermapping.txt │ │ │ │ │ ├── measure.txt │ │ │ │ │ ├── model-api.txt │ │ │ │ │ ├── ogrinspect.txt │ │ │ │ │ ├── sitemaps.txt │ │ │ │ │ ├── testing.txt │ │ │ │ │ ├── tutorial.txt │ │ │ │ │ └── utils.txt │ │ │ │ ├── humanize.txt │ │ │ │ ├── index.txt │ │ │ │ ├── localflavor.txt │ │ │ │ ├── markup.txt │ │ │ │ ├── messages.txt │ │ │ │ ├── redirects.txt │ │ │ │ ├── sitemaps.txt │ │ │ │ ├── sites.txt │ │ │ │ ├── staticfiles.txt │ │ │ │ ├── syndication.txt │ │ │ │ └── webdesign.txt │ │ │ ├── databases.txt │ │ │ ├── django-admin.txt │ │ │ ├── exceptions.txt │ │ │ ├── files/ │ │ │ │ ├── file.txt │ │ │ │ ├── index.txt │ │ │ │ └── storage.txt │ │ │ ├── forms/ │ │ │ │ ├── api.txt │ │ │ │ ├── fields.txt │ │ │ │ ├── index.txt │ │ │ │ ├── models.txt │ │ │ │ ├── validation.txt │ │ │ │ └── widgets.txt │ │ │ ├── index.txt │ │ │ ├── middleware.txt │ │ │ ├── models/ │ │ │ │ ├── fields.txt │ │ │ │ ├── index.txt │ │ │ │ ├── instances.txt │ │ │ │ ├── options.txt │ │ │ │ ├── querysets.txt │ │ │ │ └── relations.txt │ │ │ ├── request-response.txt │ │ │ ├── settings.txt │ │ │ ├── signals.txt │ │ │ ├── template-response.txt │ │ │ ├── templates/ │ │ │ │ ├── api.txt │ │ │ │ ├── builtins.txt │ │ │ │ └── index.txt │ │ │ ├── unicode.txt │ │ │ ├── urlresolvers.txt │ │ │ ├── urls.txt │ │ │ ├── utils.txt │ │ │ └── validators.txt │ │ ├── releases/ │ │ │ ├── 0.95.txt │ │ │ ├── 0.96.txt │ │ │ ├── 1.0-alpha-1.txt │ │ │ ├── 1.0-alpha-2.txt │ │ │ ├── 1.0-beta-2.txt │ │ │ ├── 1.0-beta.txt │ │ │ ├── 1.0-porting-guide.txt │ │ │ ├── 1.0.1.txt │ │ │ ├── 1.0.2.txt │ │ │ ├── 1.0.txt │ │ │ ├── 1.1-alpha-1.txt │ │ │ ├── 1.1-beta-1.txt │ │ │ ├── 1.1-rc-1.txt │ │ │ ├── 1.1.2.txt │ │ │ ├── 1.1.3.txt │ │ │ ├── 1.1.4.txt │ │ │ ├── 1.1.txt │ │ │ ├── 1.2-alpha-1.txt │ │ │ ├── 1.2-beta-1.txt │ │ │ ├── 1.2-rc-1.txt │ │ │ ├── 1.2.1.txt │ │ │ ├── 1.2.2.txt │ │ │ ├── 1.2.3.txt │ │ │ ├── 1.2.4.txt │ │ │ ├── 1.2.5.txt │ │ │ ├── 1.2.6.txt │ │ │ ├── 1.2.7.txt │ │ │ ├── 1.2.txt │ │ │ ├── 1.3-alpha-1.txt │ │ │ ├── 1.3-beta-1.txt │ │ │ ├── 1.3.1.txt │ │ │ ├── 1.3.2.txt │ │ │ ├── 1.3.txt │ │ │ ├── 1.4-alpha-1.txt │ │ │ ├── 1.4-beta-1.txt │ │ │ ├── 1.4.1.txt │ │ │ ├── 1.4.2.txt │ │ │ ├── 1.4.txt │ │ │ ├── 1.5-alpha-1.txt │ │ │ ├── 1.5-beta-1.txt │ │ │ ├── 1.5.1.txt │ │ │ ├── 1.5.txt │ │ │ └── index.txt │ │ └── topics/ │ │ ├── auth/ │ │ │ ├── customizing.txt │ │ │ ├── default.txt │ │ │ ├── index.txt │ │ │ └── passwords.txt │ │ ├── cache.txt │ │ ├── class-based-views/ │ │ │ ├── generic-display.txt │ │ │ ├── generic-editing.txt │ │ │ ├── index.txt │ │ │ ├── intro.txt │ │ │ └── mixins.txt │ │ ├── conditional-view-processing.txt │ │ ├── db/ │ │ │ ├── aggregation.txt │ │ │ ├── examples/ │ │ │ │ ├── index.txt │ │ │ │ ├── many_to_many.txt │ │ │ │ ├── many_to_one.txt │ │ │ │ └── one_to_one.txt │ │ │ ├── index.txt │ │ │ ├── managers.txt │ │ │ ├── models.txt │ │ │ ├── multi-db.txt │ │ │ ├── optimization.txt │ │ │ ├── queries.txt │ │ │ ├── sql.txt │ │ │ ├── tablespaces.txt │ │ │ └── transactions.txt │ │ ├── email.txt │ │ ├── files.txt │ │ ├── forms/ │ │ │ ├── formsets.txt │ │ │ ├── index.txt │ │ │ ├── media.txt │ │ │ └── modelforms.txt │ │ ├── http/ │ │ │ ├── decorators.txt │ │ │ ├── file-uploads.txt │ │ │ ├── generic-views.txt │ │ │ ├── index.txt │ │ │ ├── middleware.txt │ │ │ ├── sessions.txt │ │ │ ├── shortcuts.txt │ │ │ ├── urls.txt │ │ │ └── views.txt │ │ ├── i18n/ │ │ │ ├── formatting.txt │ │ │ ├── index.txt │ │ │ ├── timezones.txt │ │ │ └── translation.txt │ │ ├── index.txt │ │ ├── install.txt │ │ ├── logging.txt │ │ ├── pagination.txt │ │ ├── python3.txt │ │ ├── security.txt │ │ ├── serialization.txt │ │ ├── settings.txt │ │ ├── signals.txt │ │ ├── signing.txt │ │ ├── templates.txt │ │ └── testing/ │ │ ├── advanced.txt │ │ ├── doctests.txt │ │ ├── index.txt │ │ └── overview.txt │ ├── extras/ │ │ ├── README.TXT │ │ ├── csrf_migration_helper.py │ │ └── django_bash_completion │ ├── scripts/ │ │ ├── manage_translations.py │ │ └── rpm-install.sh │ ├── setup.cfg │ ├── setup.py │ └── tests/ │ ├── .coveragerc │ ├── modeltests/ │ │ ├── __init__.py │ │ ├── aggregation/ │ │ │ ├── __init__.py │ │ │ ├── fixtures/ │ │ │ │ └── aggregation.json │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── base/ │ │ │ ├── __init__.py │ │ │ └── models.py │ │ ├── basic/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── choices/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── custom_columns/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── custom_managers/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── custom_methods/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── custom_pk/ │ │ │ ├── __init__.py │ │ │ ├── fields.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── defer/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── delete/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── distinct_on_fields/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── empty/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ ├── no_models/ │ │ │ │ ├── __init__.py │ │ │ │ └── tests.py │ │ │ └── tests.py │ │ ├── expressions/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── field_defaults/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── field_subclassing/ │ │ │ ├── __init__.py │ │ │ ├── fields.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── files/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── fixtures/ │ │ │ ├── __init__.py │ │ │ ├── fixtures/ │ │ │ │ ├── db_fixture_1.default.json │ │ │ │ ├── db_fixture_3.nosuchdb.json │ │ │ │ ├── fixture1.json │ │ │ │ ├── fixture2.json │ │ │ │ ├── fixture2.xml │ │ │ │ ├── fixture3.xml │ │ │ │ ├── fixture6.json │ │ │ │ ├── fixture7.xml │ │ │ │ ├── fixture8.json │ │ │ │ ├── fixture9.xml │ │ │ │ ├── initial_data.json │ │ │ │ └── invalid.json │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── fixtures_model_package/ │ │ │ ├── __init__.py │ │ │ ├── fixtures/ │ │ │ │ ├── fixture1.json │ │ │ │ ├── fixture2.json │ │ │ │ ├── fixture2.xml │ │ │ │ └── initial_data.json │ │ │ ├── models/ │ │ │ │ └── __init__.py │ │ │ └── tests.py │ │ ├── force_insert_update/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── generic_relations/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── get_latest/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── get_object_or_404/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── get_or_create/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── invalid_models/ │ │ │ ├── __init__.py │ │ │ ├── invalid_models/ │ │ │ │ ├── __init__.py │ │ │ │ └── models.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── known_related_objects/ │ │ │ ├── __init__.py │ │ │ ├── fixtures/ │ │ │ │ └── tournament.json │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── lookup/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── m2m_and_m2o/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── m2m_intermediary/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── m2m_multiple/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── m2m_recursive/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── m2m_signals/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── m2m_through/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── m2o_recursive/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── many_to_many/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── many_to_one/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── many_to_one_null/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── model_forms/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── model_formsets/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── model_inheritance/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── model_inheritance_same_model_name/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── model_package/ │ │ │ ├── __init__.py │ │ │ ├── models/ │ │ │ │ ├── __init__.py │ │ │ │ ├── article.py │ │ │ │ └── publication.py │ │ │ └── tests.py │ │ ├── mutually_referential/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── one_to_one/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── or_lookups/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── order_with_respect_to/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── ordering/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── prefetch_related/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── properties/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── proxy_model_inheritance/ │ │ │ ├── __init__.py │ │ │ ├── app1/ │ │ │ │ ├── __init__.py │ │ │ │ └── models.py │ │ │ ├── app2/ │ │ │ │ ├── __init__.py │ │ │ │ └── models.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── proxy_models/ │ │ │ ├── __init__.py │ │ │ ├── fixtures/ │ │ │ │ └── mypeople.json │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── raw_query/ │ │ │ ├── __init__.py │ │ │ ├── fixtures/ │ │ │ │ └── raw_query_books.json │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── reserved_names/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── reverse_lookup/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── save_delete_hooks/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── select_for_update/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── select_related/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── serializers/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── signals/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── str/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── tablespaces/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── test_client/ │ │ │ ├── __init__.py │ │ │ ├── fixtures/ │ │ │ │ └── testdata.json │ │ │ ├── models.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── timezones/ │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ ├── fixtures/ │ │ │ │ └── tz_users.xml │ │ │ ├── forms.py │ │ │ ├── models.py │ │ │ ├── tests.py │ │ │ └── urls.py │ │ ├── transactions/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── unmanaged_models/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── update/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── update_only_fields/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── user_commands/ │ │ │ ├── __init__.py │ │ │ ├── management/ │ │ │ │ ├── __init__.py │ │ │ │ └── commands/ │ │ │ │ ├── __init__.py │ │ │ │ └── dance.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── validation/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ ├── test_custom_messages.py │ │ │ ├── test_error_messages.py │ │ │ ├── test_unique.py │ │ │ ├── tests.py │ │ │ └── validators.py │ │ └── validators/ │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── regressiontests/ │ │ ├── __init__.py │ │ ├── admin_changelist/ │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ ├── models.py │ │ │ ├── tests.py │ │ │ └── urls.py │ │ ├── admin_custom_urls/ │ │ │ ├── __init__.py │ │ │ ├── fixtures/ │ │ │ │ ├── actions.json │ │ │ │ └── users.json │ │ │ ├── models.py │ │ │ ├── tests.py │ │ │ └── urls.py │ │ ├── admin_filters/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── admin_inlines/ │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ ├── fixtures/ │ │ │ │ └── admin-views-users.xml │ │ │ ├── models.py │ │ │ ├── tests.py │ │ │ └── urls.py │ │ ├── admin_ordering/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── admin_registration/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── admin_scripts/ │ │ │ ├── __init__.py │ │ │ ├── app_with_import/ │ │ │ │ ├── __init__.py │ │ │ │ └── models.py │ │ │ ├── broken_app/ │ │ │ │ ├── __init__.py │ │ │ │ └── models.py │ │ │ ├── complex_app/ │ │ │ │ ├── __init__.py │ │ │ │ ├── admin/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── foo.py │ │ │ │ └── models/ │ │ │ │ ├── __init__.py │ │ │ │ ├── bar.py │ │ │ │ └── foo.py │ │ │ ├── custom_templates/ │ │ │ │ ├── app_template/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── api.py │ │ │ │ │ └── models.py │ │ │ │ ├── project_template/ │ │ │ │ │ ├── additional_dir/ │ │ │ │ │ │ ├── Procfile │ │ │ │ │ │ ├── additional_file.py │ │ │ │ │ │ ├── extra.py │ │ │ │ │ │ └── requirements.txt │ │ │ │ │ ├── manage.py │ │ │ │ │ ├── project_name/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── settings.py │ │ │ │ │ └── ticket-18091-non-ascii-template.txt │ │ │ │ └── project_template.tgz │ │ │ ├── management/ │ │ │ │ ├── __init__.py │ │ │ │ └── commands/ │ │ │ │ ├── __init__.py │ │ │ │ ├── app_command.py │ │ │ │ ├── base_command.py │ │ │ │ ├── custom_startproject.py │ │ │ │ ├── label_command.py │ │ │ │ └── noargs_command.py │ │ │ ├── models.py │ │ │ ├── simple_app/ │ │ │ │ ├── __init__.py │ │ │ │ └── models.py │ │ │ ├── tests.py │ │ │ └── urls.py │ │ ├── admin_util/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── admin_validation/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── admin_views/ │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ ├── customadmin.py │ │ │ ├── fixtures/ │ │ │ │ ├── admin-views-actions.xml │ │ │ │ ├── admin-views-books.xml │ │ │ │ ├── admin-views-colors.xml │ │ │ │ ├── admin-views-fabrics.xml │ │ │ │ ├── admin-views-person.xml │ │ │ │ ├── admin-views-unicode.xml │ │ │ │ ├── admin-views-users.xml │ │ │ │ ├── deleted-objects.xml │ │ │ │ ├── multiple-child-classes.json │ │ │ │ └── string-primary-key.xml │ │ │ ├── forms.py │ │ │ ├── models.py │ │ │ ├── templates/ │ │ │ │ └── custom_filter_template.html │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── admin_widgets/ │ │ │ ├── __init__.py │ │ │ ├── fixtures/ │ │ │ │ └── admin-widgets-users.xml │ │ │ ├── models.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── widgetadmin.py │ │ ├── aggregation_regress/ │ │ │ ├── __init__.py │ │ │ ├── fixtures/ │ │ │ │ └── aggregation_regress.json │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── app_loading/ │ │ │ ├── __init__.py │ │ │ ├── eggs/ │ │ │ │ ├── brokenapp.egg │ │ │ │ ├── modelapp.egg │ │ │ │ ├── nomodelapp.egg │ │ │ │ └── omelet.egg │ │ │ ├── models.py │ │ │ ├── not_installed/ │ │ │ │ ├── __init__.py │ │ │ │ └── models.py │ │ │ └── tests.py │ │ ├── backends/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── bash_completion/ │ │ │ ├── __init__.py │ │ │ ├── management/ │ │ │ │ ├── __init__.py │ │ │ │ └── commands/ │ │ │ │ ├── __init__.py │ │ │ │ └── test_command.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── bug639/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── bug8245/ │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── builtin_server/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── bulk_create/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── cache/ │ │ │ ├── __init__.py │ │ │ ├── closeable_cache.py │ │ │ ├── liberal_backend.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── comment_tests/ │ │ │ ├── __init__.py │ │ │ ├── custom_comments/ │ │ │ │ ├── __init__.py │ │ │ │ ├── forms.py │ │ │ │ ├── models.py │ │ │ │ └── views.py │ │ │ ├── fixtures/ │ │ │ │ ├── comment_tests.json │ │ │ │ └── comment_utils.xml │ │ │ ├── models.py │ │ │ ├── tests/ │ │ │ │ ├── __init__.py │ │ │ │ ├── app_api_tests.py │ │ │ │ ├── comment_form_tests.py │ │ │ │ ├── comment_utils_moderators_tests.py │ │ │ │ ├── comment_view_tests.py │ │ │ │ ├── feed_tests.py │ │ │ │ ├── model_tests.py │ │ │ │ ├── moderation_view_tests.py │ │ │ │ └── templatetag_tests.py │ │ │ ├── urls.py │ │ │ ├── urls_admin.py │ │ │ └── urls_default.py │ │ ├── conditional_processing/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── context_processors/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ ├── templates/ │ │ │ │ └── context_processors/ │ │ │ │ └── request_attrs.html │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── createsuperuser/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── csrf_tests/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── custom_columns_regress/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── custom_managers_regress/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── datatypes/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── dates/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── db_typecasts/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── decorators/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── defaultfilters/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── defer_regress/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── delete_regress/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── dispatch/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests/ │ │ │ ├── __init__.py │ │ │ ├── test_dispatcher.py │ │ │ └── test_saferef.py │ │ ├── expressions_regress/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── extra_regress/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── file_storage/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── file_uploads/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ ├── tests.py │ │ │ ├── uploadhandler.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── fixtures_regress/ │ │ │ ├── __init__.py │ │ │ ├── fixtures/ │ │ │ │ ├── absolute.json │ │ │ │ ├── animal.xml │ │ │ │ ├── bad_fixture1.unkn │ │ │ │ ├── bad_fixture2.xml │ │ │ │ ├── big-fixture.json │ │ │ │ ├── empty.json │ │ │ │ ├── forward_ref.json │ │ │ │ ├── forward_ref_bad_data.json │ │ │ │ ├── forward_ref_lookup.json │ │ │ │ ├── model-inheritance.json │ │ │ │ ├── nk-inheritance.json │ │ │ │ ├── nk-inheritance2.xml │ │ │ │ ├── non_natural_1.json │ │ │ │ ├── non_natural_2.xml │ │ │ │ ├── pretty.xml │ │ │ │ ├── sequence.json │ │ │ │ ├── sequence_extra.json │ │ │ │ └── thingy.json │ │ │ ├── fixtures_1/ │ │ │ │ └── forward_ref_1.json │ │ │ ├── fixtures_2/ │ │ │ │ └── forward_ref_2.json │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── forms/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ ├── templates/ │ │ │ │ └── forms/ │ │ │ │ └── article_form.html │ │ │ ├── tests/ │ │ │ │ ├── __init__.py │ │ │ │ ├── error_messages.py │ │ │ │ ├── extra.py │ │ │ │ ├── fields.py │ │ │ │ ├── filepath_test_files/ │ │ │ │ │ ├── .dot-file │ │ │ │ │ ├── directory/ │ │ │ │ │ │ └── .keep │ │ │ │ │ └── real-text-file.txt │ │ │ │ ├── forms.py │ │ │ │ ├── formsets.py │ │ │ │ ├── input_formats.py │ │ │ │ ├── media.py │ │ │ │ ├── models.py │ │ │ │ ├── regressions.py │ │ │ │ ├── util.py │ │ │ │ ├── validators.py │ │ │ │ └── widgets.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── generic_inline_admin/ │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ ├── fixtures/ │ │ │ │ └── users.xml │ │ │ ├── models.py │ │ │ ├── tests.py │ │ │ └── urls.py │ │ ├── generic_relations_regress/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── generic_views/ │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── dates.py │ │ │ ├── detail.py │ │ │ ├── edit.py │ │ │ ├── fixtures/ │ │ │ │ └── generic-views-test-data.json │ │ │ ├── forms.py │ │ │ ├── list.py │ │ │ ├── models.py │ │ │ ├── templates/ │ │ │ │ ├── generic_views/ │ │ │ │ │ ├── about.html │ │ │ │ │ ├── apple_detail.html │ │ │ │ │ ├── artist_detail.html │ │ │ │ │ ├── artist_form.html │ │ │ │ │ ├── author_confirm_delete.html │ │ │ │ │ ├── author_detail.html │ │ │ │ │ ├── author_form.html │ │ │ │ │ ├── author_list.html │ │ │ │ │ ├── author_objects.html │ │ │ │ │ ├── author_view.html │ │ │ │ │ ├── book_archive.html │ │ │ │ │ ├── book_archive_day.html │ │ │ │ │ ├── book_archive_month.html │ │ │ │ │ ├── book_archive_week.html │ │ │ │ │ ├── book_archive_year.html │ │ │ │ │ ├── book_detail.html │ │ │ │ │ ├── book_list.html │ │ │ │ │ ├── confirm_delete.html │ │ │ │ │ ├── detail.html │ │ │ │ │ ├── form.html │ │ │ │ │ ├── list.html │ │ │ │ │ ├── page_template.html │ │ │ │ │ └── robots.txt │ │ │ │ └── registration/ │ │ │ │ └── login.html │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── get_or_create_regress/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── handlers/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ ├── tests.py │ │ │ └── urls.py │ │ ├── http_utils/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── httpwrappers/ │ │ │ ├── __init__.py │ │ │ ├── abc.txt │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── i18n/ │ │ │ ├── __init__.py │ │ │ ├── commands/ │ │ │ │ ├── __init__.py │ │ │ │ ├── code.sample │ │ │ │ ├── compilation.py │ │ │ │ ├── extraction.py │ │ │ │ ├── ignore_dir/ │ │ │ │ │ └── ignored.html │ │ │ │ ├── javascript.js │ │ │ │ ├── locale/ │ │ │ │ │ ├── es_AR/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── fr/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ └── django.po │ │ │ │ │ └── it/ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── templates/ │ │ │ │ │ ├── template_with_error.tpl │ │ │ │ │ └── test.html │ │ │ │ └── tests.py │ │ │ ├── contenttypes/ │ │ │ │ ├── __init__.py │ │ │ │ ├── locale/ │ │ │ │ │ ├── en/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ └── fr/ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ └── tests.py │ │ │ ├── forms.py │ │ │ ├── models.py │ │ │ ├── other/ │ │ │ │ ├── __init__.py │ │ │ │ └── locale/ │ │ │ │ ├── __init__.py │ │ │ │ ├── de/ │ │ │ │ │ ├── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── formats.py │ │ │ │ └── fr/ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ │ ├── patterns/ │ │ │ │ ├── __init__.py │ │ │ │ ├── locale/ │ │ │ │ │ ├── en/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── nl/ │ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ └── pt_BR/ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── templates/ │ │ │ │ │ ├── 404.html │ │ │ │ │ └── dummy.html │ │ │ │ ├── tests.py │ │ │ │ └── urls/ │ │ │ │ ├── __init__.py │ │ │ │ ├── default.py │ │ │ │ ├── disabled.py │ │ │ │ ├── namespace.py │ │ │ │ ├── path_unused.py │ │ │ │ ├── wrong.py │ │ │ │ └── wrong_namespace.py │ │ │ ├── resolution/ │ │ │ │ ├── __init__.py │ │ │ │ ├── locale/ │ │ │ │ │ └── de/ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ └── models.py │ │ │ └── tests.py │ │ ├── indexes/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── initial_sql_regress/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ ├── sql/ │ │ │ │ └── simple.sql │ │ │ └── tests.py │ │ ├── inline_formsets/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── inspectdb/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── introspection/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── localflavor/ │ │ │ ├── __init__.py │ │ │ ├── generic/ │ │ │ │ ├── __init__.py │ │ │ │ └── tests.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── logging_tests/ │ │ │ ├── __init__.py │ │ │ ├── logconfig.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── m2m_regress/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── m2m_through_regress/ │ │ │ ├── __init__.py │ │ │ ├── fixtures/ │ │ │ │ └── m2m_through.json │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── mail/ │ │ │ ├── __init__.py │ │ │ ├── custombackend.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── managers_regress/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── many_to_one_regress/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── max_lengths/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── middleware/ │ │ │ ├── __init__.py │ │ │ ├── cond_get_urls.py │ │ │ ├── extra_urls.py │ │ │ ├── models.py │ │ │ ├── tests.py │ │ │ └── urls.py │ │ ├── middleware_exceptions/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── model_fields/ │ │ │ ├── __init__.py │ │ │ ├── imagefield.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── model_forms_regress/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── model_formsets_regress/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── model_inheritance_regress/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── model_inheritance_select_related/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── model_permalink/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ ├── tests.py │ │ │ └── urls.py │ │ ├── model_regress/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── modeladmin/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── multiple_database/ │ │ │ ├── __init__.py │ │ │ ├── fixtures/ │ │ │ │ ├── multidb-common.json │ │ │ │ ├── multidb.default.json │ │ │ │ ├── multidb.other.json │ │ │ │ └── pets.json │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── nested_foreign_keys/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── null_fk/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── null_fk_ordering/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── null_queries/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── one_to_one_regress/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── pagination/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── queries/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── queryset_pickle/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── requests/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── resolve_url/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── reverse_single_related/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── select_related_onetoone/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── select_related_regress/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── serializers_regress/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── servers/ │ │ │ ├── __init__.py │ │ │ ├── fixtures/ │ │ │ │ └── testdata.json │ │ │ ├── media/ │ │ │ │ └── example_media_file.txt │ │ │ ├── models.py │ │ │ ├── static/ │ │ │ │ └── example_static_file.txt │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── settings_tests/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── signals_regress/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── signed_cookies_tests/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── signing/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── sites_framework/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── special_headers/ │ │ │ ├── __init__.py │ │ │ ├── fixtures/ │ │ │ │ └── data.xml │ │ │ ├── models.py │ │ │ ├── templates/ │ │ │ │ └── special_headers/ │ │ │ │ └── article_detail.html │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── staticfiles_tests/ │ │ │ ├── __init__.py │ │ │ ├── apps/ │ │ │ │ ├── __init__.py │ │ │ │ ├── no_label/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── models.py │ │ │ │ │ └── static/ │ │ │ │ │ └── file2.txt │ │ │ │ └── test/ │ │ │ │ ├── __init__.py │ │ │ │ ├── models.py │ │ │ │ ├── otherdir/ │ │ │ │ │ └── odfile.txt │ │ │ │ └── static/ │ │ │ │ └── test/ │ │ │ │ ├── CVS │ │ │ │ ├── file.txt │ │ │ │ ├── file1.txt │ │ │ │ ├── nonascii.css │ │ │ │ └── test.ignoreme │ │ │ ├── models.py │ │ │ ├── project/ │ │ │ │ ├── documents/ │ │ │ │ │ ├── cached/ │ │ │ │ │ │ ├── absolute.css │ │ │ │ │ │ ├── css/ │ │ │ │ │ │ │ ├── fragments.css │ │ │ │ │ │ │ ├── ignored.css │ │ │ │ │ │ │ └── window.css │ │ │ │ │ │ ├── denorm.css │ │ │ │ │ │ ├── import.css │ │ │ │ │ │ ├── other.css │ │ │ │ │ │ ├── relative.css │ │ │ │ │ │ ├── styles.css │ │ │ │ │ │ └── url.css │ │ │ │ │ ├── subdir/ │ │ │ │ │ │ └── test.txt │ │ │ │ │ ├── test/ │ │ │ │ │ │ ├── camelCase.txt │ │ │ │ │ │ └── file.txt │ │ │ │ │ └── test.txt │ │ │ │ ├── prefixed/ │ │ │ │ │ └── test.txt │ │ │ │ └── site_media/ │ │ │ │ ├── media/ │ │ │ │ │ └── media-file.txt │ │ │ │ └── static/ │ │ │ │ └── testfile.txt │ │ │ ├── storage.py │ │ │ ├── tests.py │ │ │ └── urls/ │ │ │ ├── __init__.py │ │ │ ├── default.py │ │ │ └── helper.py │ │ ├── string_lookup/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── swappable_models/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── syndication/ │ │ │ ├── __init__.py │ │ │ ├── feeds.py │ │ │ ├── fixtures/ │ │ │ │ └── feeddata.json │ │ │ ├── models.py │ │ │ ├── templates/ │ │ │ │ └── syndication/ │ │ │ │ ├── description.html │ │ │ │ └── title.html │ │ │ ├── tests.py │ │ │ └── urls.py │ │ ├── templates/ │ │ │ ├── __init__.py │ │ │ ├── alternate_urls.py │ │ │ ├── callables.py │ │ │ ├── context.py │ │ │ ├── custom.py │ │ │ ├── eggs/ │ │ │ │ └── tagsegg.egg │ │ │ ├── filters.py │ │ │ ├── loaders.py │ │ │ ├── models.py │ │ │ ├── nodelist.py │ │ │ ├── parser.py │ │ │ ├── response.py │ │ │ ├── smartif.py │ │ │ ├── templates/ │ │ │ │ ├── broken_base.html │ │ │ │ ├── first/ │ │ │ │ │ └── test.html │ │ │ │ ├── inclusion.html │ │ │ │ ├── response.html │ │ │ │ ├── second/ │ │ │ │ │ └── test.html │ │ │ │ ├── ssi include with spaces.html │ │ │ │ ├── ssi_include.html │ │ │ │ ├── test_context.html │ │ │ │ ├── test_extends_error.html │ │ │ │ ├── test_incl_tag_current_app.html │ │ │ │ ├── test_incl_tag_use_l10n.html │ │ │ │ └── test_include_error.html │ │ │ ├── templatetags/ │ │ │ │ ├── __init__.py │ │ │ │ ├── bad_tag.py │ │ │ │ ├── broken_tag.py │ │ │ │ ├── custom.py │ │ │ │ └── subpackage/ │ │ │ │ ├── __init__.py │ │ │ │ ├── echo.py │ │ │ │ └── echo_invalid.py │ │ │ ├── tests.py │ │ │ ├── unicode.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── test_client_regress/ │ │ │ ├── __init__.py │ │ │ ├── bad_templates/ │ │ │ │ └── 404.html │ │ │ ├── fixtures/ │ │ │ │ └── testdata.json │ │ │ ├── models.py │ │ │ ├── session.py │ │ │ ├── templates/ │ │ │ │ ├── request_context.html │ │ │ │ └── unicode.html │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── test_runner/ │ │ │ ├── __init__.py │ │ │ ├── deprecation_app/ │ │ │ │ ├── __init__.py │ │ │ │ ├── models.py │ │ │ │ └── tests.py │ │ │ ├── invalid_app/ │ │ │ │ ├── __init__.py │ │ │ │ ├── models/ │ │ │ │ │ └── __init__.py │ │ │ │ └── tests/ │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── tests.py │ │ │ └── valid_app/ │ │ │ ├── __init__.py │ │ │ ├── models/ │ │ │ │ └── __init__.py │ │ │ └── tests/ │ │ │ └── __init__.py │ │ ├── test_utils/ │ │ │ ├── __init__.py │ │ │ ├── fixtures/ │ │ │ │ └── should_not_be_loaded.json │ │ │ ├── models.py │ │ │ ├── templates/ │ │ │ │ └── template_used/ │ │ │ │ ├── alternative.html │ │ │ │ ├── base.html │ │ │ │ ├── extends.html │ │ │ │ └── include.html │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── text/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── transactions_regress/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── urlpatterns_reverse/ │ │ │ ├── __init__.py │ │ │ ├── erroneous_urls.py │ │ │ ├── erroneous_views_module.py │ │ │ ├── extra_urls.py │ │ │ ├── included_named_urls.py │ │ │ ├── included_named_urls2.py │ │ │ ├── included_namespace_urls.py │ │ │ ├── included_urls.py │ │ │ ├── included_urls2.py │ │ │ ├── middleware.py │ │ │ ├── models.py │ │ │ ├── named_urls.py │ │ │ ├── namespace_urls.py │ │ │ ├── no_urls.py │ │ │ ├── reverse_lazy_urls.py │ │ │ ├── tests.py │ │ │ ├── urlconf_inner.py │ │ │ ├── urlconf_outer.py │ │ │ ├── urls.py │ │ │ ├── urls_error_handlers.py │ │ │ ├── urls_error_handlers_callables.py │ │ │ ├── urls_without_full_import.py │ │ │ ├── views.py │ │ │ └── views_broken.py │ │ ├── utils/ │ │ │ ├── __init__.py │ │ │ ├── archive.py │ │ │ ├── archives/ │ │ │ │ └── foobar.tar.bz2 │ │ │ ├── baseconv.py │ │ │ ├── checksums.py │ │ │ ├── crypto.py │ │ │ ├── datastructures.py │ │ │ ├── dateformat.py │ │ │ ├── dateparse.py │ │ │ ├── datetime_safe.py │ │ │ ├── decorators.py │ │ │ ├── eggs/ │ │ │ │ └── test_egg.egg │ │ │ ├── encoding.py │ │ │ ├── feedgenerator.py │ │ │ ├── functional.py │ │ │ ├── html.py │ │ │ ├── http.py │ │ │ ├── ipv6.py │ │ │ ├── itercompat.py │ │ │ ├── jslex.py │ │ │ ├── models.py │ │ │ ├── module_loading.py │ │ │ ├── numberformat.py │ │ │ ├── os_utils.py │ │ │ ├── regex_helper.py │ │ │ ├── simplelazyobject.py │ │ │ ├── termcolors.py │ │ │ ├── test_module/ │ │ │ │ ├── __init__.py │ │ │ │ ├── bad_module.py │ │ │ │ └── good_module.py │ │ │ ├── test_no_submodule.py │ │ │ ├── tests.py │ │ │ ├── text.py │ │ │ ├── timesince.py │ │ │ ├── timezone.py │ │ │ └── tzinfo.py │ │ ├── version/ │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── views/ │ │ │ ├── __init__.py │ │ │ ├── app0/ │ │ │ │ ├── __init__.py │ │ │ │ └── locale/ │ │ │ │ └── en/ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ ├── djangojs.mo │ │ │ │ └── djangojs.po │ │ │ ├── app1/ │ │ │ │ ├── __init__.py │ │ │ │ └── locale/ │ │ │ │ └── fr/ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ ├── djangojs.mo │ │ │ │ └── djangojs.po │ │ │ ├── app2/ │ │ │ │ ├── __init__.py │ │ │ │ └── locale/ │ │ │ │ └── fr/ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ ├── djangojs.mo │ │ │ │ └── djangojs.po │ │ │ ├── app3/ │ │ │ │ ├── __init__.py │ │ │ │ └── locale/ │ │ │ │ └── es_AR/ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ ├── djangojs.mo │ │ │ │ └── djangojs.po │ │ │ ├── app4/ │ │ │ │ ├── __init__.py │ │ │ │ └── locale/ │ │ │ │ └── es_AR/ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ ├── djangojs.mo │ │ │ │ └── djangojs.po │ │ │ ├── fixtures/ │ │ │ │ └── testdata.json │ │ │ ├── generic_urls.py │ │ │ ├── locale/ │ │ │ │ ├── de/ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ └── djangojs.po │ │ │ │ ├── es/ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ └── djangojs.po │ │ │ │ ├── fr/ │ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ └── djangojs.po │ │ │ │ └── ru/ │ │ │ │ └── LC_MESSAGES/ │ │ │ │ ├── djangojs.mo │ │ │ │ └── djangojs.po │ │ │ ├── media/ │ │ │ │ ├── file.txt │ │ │ │ └── file.unknown │ │ │ ├── models.py │ │ │ ├── templates/ │ │ │ │ ├── debug/ │ │ │ │ │ ├── render_test.html │ │ │ │ │ └── template_exception.html │ │ │ │ └── jsi18n.html │ │ │ ├── templatetags/ │ │ │ │ ├── __init__.py │ │ │ │ └── debugtags.py │ │ │ ├── tests/ │ │ │ │ ├── __init__.py │ │ │ │ ├── debug.py │ │ │ │ ├── defaults.py │ │ │ │ ├── i18n.py │ │ │ │ ├── shortcuts.py │ │ │ │ ├── specials.py │ │ │ │ └── static.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ └── wsgi/ │ │ ├── __init__.py │ │ ├── models.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── wsgi.py │ ├── runtests.py │ ├── templates/ │ │ ├── base.html │ │ ├── comments/ │ │ │ └── comment_notification_email.txt │ │ ├── custom_admin/ │ │ │ ├── add_form.html │ │ │ ├── change_form.html │ │ │ ├── change_list.html │ │ │ ├── delete_confirmation.html │ │ │ ├── delete_selected_confirmation.html │ │ │ ├── index.html │ │ │ ├── login.html │ │ │ ├── logout.html │ │ │ ├── object_history.html │ │ │ ├── password_change_done.html │ │ │ └── password_change_form.html │ │ ├── extended.html │ │ ├── form_view.html │ │ ├── login.html │ │ └── views/ │ │ ├── article_archive_day.html │ │ ├── article_archive_month.html │ │ ├── article_confirm_delete.html │ │ ├── article_detail.html │ │ ├── article_form.html │ │ ├── article_list.html │ │ ├── datearticle_archive_month.html │ │ ├── urlarticle_detail.html │ │ └── urlarticle_form.html │ ├── test_sqlite.py │ └── urls.py ├── LICENSE └── README.md