├── .gitignore ├── .hgignore ├── .tx └── config ├── AUTHORS ├── INSTALL ├── LICENSE ├── MANIFEST.in ├── README ├── django ├── __init__.py ├── bin │ ├── __init__.py │ ├── daily_cleanup.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 │ │ ├── ar │ │ │ ├── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ │ ├── __init__.py │ │ │ └── formats.py │ │ ├── az │ │ │ └── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── filters.py │ │ ├── forms.py │ │ ├── helpers.py │ │ ├── locale │ │ │ ├── ar │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ ├── django.po │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ └── djangojs.po │ │ │ ├── az │ │ │ │ └── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ │ ├── img │ │ │ │ ├── changelist-bg.gif │ │ │ │ ├── changelist-bg_rtl.gif │ │ │ │ ├── chooser-bg.gif │ │ │ │ ├── chooser_stacked-bg.gif │ │ │ │ ├── default-bg-reverse.gif │ │ │ │ ├── default-bg.gif │ │ │ │ ├── deleted-overlay.gif │ │ │ │ ├── gis │ │ │ │ │ ├── move_vertex_off.png │ │ │ │ │ └── move_vertex_on.png │ │ │ │ ├── icon-no.gif │ │ │ │ ├── icon-unknown.gif │ │ │ │ ├── icon-yes.gif │ │ │ │ ├── icon_addlink.gif │ │ │ │ ├── icon_alert.gif │ │ │ │ ├── icon_calendar.gif │ │ │ │ ├── icon_changelink.gif │ │ │ │ ├── icon_clock.gif │ │ │ │ ├── icon_deletelink.gif │ │ │ │ ├── icon_error.gif │ │ │ │ ├── icon_searchbox.png │ │ │ │ ├── icon_success.gif │ │ │ │ ├── inline-delete-8bit.png │ │ │ │ ├── inline-delete.png │ │ │ │ ├── inline-restore-8bit.png │ │ │ │ ├── inline-restore.png │ │ │ │ ├── inline-splitter-bg.gif │ │ │ │ ├── nav-bg-grabber.gif │ │ │ │ ├── nav-bg-reverse.gif │ │ │ │ ├── nav-bg-selected.gif │ │ │ │ ├── nav-bg.gif │ │ │ │ ├── selector-icons.gif │ │ │ │ ├── selector-search.gif │ │ │ │ ├── sorting-icons.gif │ │ │ │ ├── tool-left.gif │ │ │ │ ├── tool-left_over.gif │ │ │ │ ├── tool-right.gif │ │ │ │ ├── tool-right_over.gif │ │ │ │ ├── tooltag-add.gif │ │ │ │ ├── tooltag-add_over.gif │ │ │ │ ├── tooltag-arrowright.gif │ │ │ │ └── tooltag-arrowright_over.gif │ │ │ │ └── js │ │ │ │ ├── LICENSE-JQUERY.txt │ │ │ │ ├── SelectBox.js │ │ │ │ ├── SelectFilter2.js │ │ │ │ ├── actions.js │ │ │ │ ├── actions.min.js │ │ │ │ ├── admin │ │ │ │ ├── DateTimeShortcuts.js │ │ │ │ ├── RelatedObjectLookups.js │ │ │ │ └── ordering.js │ │ │ │ ├── calendar.js │ │ │ │ ├── collapse.js │ │ │ │ ├── collapse.min.js │ │ │ │ ├── compress.py │ │ │ │ ├── core.js │ │ │ │ ├── getElementsBySelector.js │ │ │ │ ├── inlines.js │ │ │ │ ├── inlines.min.js │ │ │ │ ├── jquery.init.js │ │ │ │ ├── jquery.js │ │ │ │ ├── jquery.min.js │ │ │ │ ├── prepopulate.js │ │ │ │ ├── prepopulate.min.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 │ │ │ ├── adminmedia.py │ │ │ └── log.py │ │ ├── util.py │ │ ├── validation.py │ │ ├── views │ │ │ ├── __init__.py │ │ │ ├── decorators.py │ │ │ └── main.py │ │ └── widgets.py │ ├── admindocs │ │ ├── __init__.py │ │ ├── locale │ │ │ ├── ar │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── az │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── bg │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── bn │ │ │ │ └── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ ├── forms.py │ │ ├── handlers │ │ │ ├── __init__.py │ │ │ └── modpython.py │ │ ├── locale │ │ │ ├── ar │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── az │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── bg │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── bn │ │ │ │ └── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── decorators.py │ │ │ ├── forms.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_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 │ │ │ └── views.py │ │ ├── tokens.py │ │ ├── urls.py │ │ ├── utils.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 │ │ │ ├── bg │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── bn │ │ │ │ └── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── bg │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── bn │ │ │ │ └── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ ├── 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 │ │ ├── urls.py │ │ └── views.py │ ├── flatpages │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── fixtures │ │ │ └── sample_flatpages.json │ │ ├── forms.py │ │ ├── locale │ │ │ ├── ar │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── az │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── bg │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── bn │ │ │ │ └── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── bg │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── bn │ │ │ │ └── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ │ │ ├── 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 │ │ │ ├── bg │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── bn │ │ │ │ └── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ │ ├── cities │ │ │ │ │ ├── cities.dbf │ │ │ │ │ ├── cities.prj │ │ │ │ │ ├── cities.shp │ │ │ │ │ └── cities.shx │ │ │ │ ├── counties │ │ │ │ │ ├── counties.dbf │ │ │ │ │ ├── counties.shp │ │ │ │ │ └── counties.shx │ │ │ │ ├── geometries.json.gz │ │ │ │ ├── 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 │ │ │ │ ├── fixtures │ │ │ │ │ └── initial_data.json.gz │ │ │ │ ├── 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 │ │ │ │ ├── fixtures │ │ │ │ │ └── initial_data.json.gz │ │ │ │ ├── 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 │ │ │ │ ├── fixtures │ │ │ │ │ └── initial_data.json.gz │ │ │ │ ├── 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 │ │ │ ├── bg │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── bn │ │ │ │ └── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ ├── 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 │ │ │ ├── bg │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── bn │ │ │ │ └── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ ├── 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 │ │ │ ├── bg │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── bn │ │ │ │ └── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── bg │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── bn │ │ │ │ └── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ ├── 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 │ │ │ ├── bg │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── bn │ │ │ │ └── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ ├── sitemaps │ │ ├── __init__.py │ │ ├── management │ │ │ ├── __init__.py │ │ │ └── commands │ │ │ │ ├── __init__.py │ │ │ │ └── ping_google.py │ │ ├── models.py │ │ ├── templates │ │ │ ├── sitemap.xml │ │ │ └── sitemap_index.xml │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── basic.py │ │ │ ├── templates │ │ │ │ ├── custom_sitemap.xml │ │ │ │ └── custom_sitemap_index.xml │ │ │ └── urls.py │ │ └── views.py │ ├── sites │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── locale │ │ │ ├── ar │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── az │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── bg │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── bn │ │ │ │ └── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ ├── modpython.py │ │ ├── profiler-hotshot.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 │ │ │ ├── reset.py │ │ │ ├── runfcgi.py │ │ │ ├── runserver.py │ │ │ ├── shell.py │ │ │ ├── sql.py │ │ │ ├── sqlall.py │ │ │ ├── sqlclear.py │ │ │ ├── sqlcustom.py │ │ │ ├── sqlflush.py │ │ │ ├── sqlindexes.py │ │ │ ├── sqlinitialdata.py │ │ │ ├── sqlreset.py │ │ │ ├── sqlsequencereset.py │ │ │ ├── startapp.py │ │ │ ├── startproject.py │ │ │ ├── syncdb.py │ │ │ ├── test.py │ │ │ ├── testserver.py │ │ │ └── validate.py │ │ ├── sql.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 │ │ ├── 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 │ ├── multipartparser.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 ├── test │ ├── __init__.py │ ├── _doctest.py │ ├── client.py │ ├── signals.py │ ├── simple.py │ ├── testcases.py │ └── utils.py ├── utils │ ├── __init__.py │ ├── _os.py │ ├── autoreload.py │ ├── baseconv.py │ ├── cache.py │ ├── checksums.py │ ├── copycompat.py │ ├── crypto.py │ ├── daemonize.py │ ├── datastructures.py │ ├── dateformat.py │ ├── dates.py │ ├── datetime_safe.py │ ├── decorators.py │ ├── dictconfig.py │ ├── encoding.py │ ├── feedgenerator.py │ ├── formats.py │ ├── functional.py │ ├── hashcompat.py │ ├── html.py │ ├── http.py │ ├── importlib.py │ ├── ipv6.py │ ├── itercompat.py │ ├── jslex.py │ ├── log.py │ ├── module_loading.py │ ├── numberformat.py │ ├── regex_helper.py │ ├── safestring.py │ ├── simplejson │ │ ├── LICENSE.txt │ │ ├── __init__.py │ │ ├── decoder.py │ │ ├── encoder.py │ │ ├── scanner.py │ │ └── tool.py │ ├── synch.py │ ├── termcolors.py │ ├── text.py │ ├── timesince.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 │ ├── create_update.py │ ├── date_based.py │ ├── dates.py │ ├── detail.py │ ├── edit.py │ ├── list.py │ ├── list_detail.py │ └── simple.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 │ │ ├── docicons-behindscenes.png │ │ ├── docicons-note.png │ │ ├── docicons-philosophy.png │ │ ├── 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 │ └── usage.txt ├── glossary.txt ├── howto │ ├── apache-auth.txt │ ├── 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 │ │ ├── modpython.txt │ │ └── wsgi │ │ │ ├── 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 │ ├── _images │ │ └── djangotickets.png │ ├── committers.txt │ ├── contributing │ │ ├── bugs-and-features.txt │ │ ├── committing-code.txt │ │ ├── index.txt │ │ ├── localizing.txt │ │ ├── new-contributors.txt │ │ ├── triaging-tickets.txt │ │ ├── writing-code │ │ │ ├── branch-policy.txt │ │ │ ├── coding-style.txt │ │ │ ├── index.txt │ │ │ ├── submitting-patches.txt │ │ │ └── unit-tests.txt │ │ └── writing-documentation.txt │ ├── deprecation.txt │ ├── index.txt │ ├── release-process.txt │ └── svn.txt ├── intro │ ├── _images │ │ ├── admin01.png │ │ ├── admin02.png │ │ ├── admin02t.png │ │ ├── admin03.png │ │ ├── admin03t.png │ │ ├── admin04.png │ │ ├── admin04t.png │ │ ├── admin05.png │ │ ├── admin05t.png │ │ ├── admin06.png │ │ ├── admin06t.png │ │ ├── admin07.png │ │ ├── admin08.png │ │ ├── admin08t.png │ │ ├── admin09.png │ │ ├── admin10.png │ │ ├── admin11.png │ │ ├── admin11t.png │ │ ├── admin12.png │ │ ├── admin13.png │ │ ├── admin13t.png │ │ ├── admin14.png │ │ └── admin14t.png │ ├── index.txt │ ├── install.txt │ ├── overview.txt │ ├── tutorial01.txt │ ├── tutorial02.txt │ ├── tutorial03.txt │ ├── tutorial04.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 ├── obsolete │ ├── _images │ │ ├── formrow.png │ │ ├── module.png │ │ ├── objecttools_01.png │ │ └── objecttools_02.png │ ├── admin-css.txt │ └── index.txt ├── ref │ ├── authbackends.txt │ ├── class-based-views.txt │ ├── clickjacking.txt │ ├── contrib │ │ ├── admin │ │ │ ├── _images │ │ │ │ ├── article_actions.png │ │ │ │ ├── article_actions_message.png │ │ │ │ ├── flatfiles_admin.png │ │ │ │ ├── user_actions.png │ │ │ │ └── users_changelist.png │ │ │ ├── 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 │ │ │ └── upgrade.txt │ │ ├── contenttypes.txt │ │ ├── csrf.txt │ │ ├── databrowse.txt │ │ ├── flatpages.txt │ │ ├── formtools │ │ │ ├── form-preview.txt │ │ │ ├── form-wizard.txt │ │ │ └── index.txt │ │ ├── gis │ │ │ ├── admin.txt │ │ │ ├── commands.txt │ │ │ ├── create_template_postgis-1.3.sh │ │ │ ├── create_template_postgis-1.4.sh │ │ │ ├── create_template_postgis-1.5.sh │ │ │ ├── create_template_postgis-debian.sh │ │ │ ├── db-api.txt │ │ │ ├── deployment.txt │ │ │ ├── feeds.txt │ │ │ ├── gdal.txt │ │ │ ├── geodjango_setup.bat │ │ │ ├── geoip.txt │ │ │ ├── geoquerysets.txt │ │ │ ├── geos.txt │ │ │ ├── index.txt │ │ │ ├── install.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 │ │ ├── validation.txt │ │ └── widgets.txt │ ├── generic-views.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 │ ├── 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.txt │ ├── 1.4.txt │ └── index.txt └── topics │ ├── auth.txt │ ├── cache.txt │ ├── class-based-views.txt │ ├── conditional-view-processing.txt │ ├── db │ ├── aggregation.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 │ ├── generic-views-migration.txt │ ├── generic-views.txt │ ├── http │ ├── _images │ │ └── middleware.png │ ├── 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 │ └── translation.txt │ ├── index.txt │ ├── install.txt │ ├── logging.txt │ ├── pagination.txt │ ├── security.txt │ ├── serialization.txt │ ├── settings.txt │ ├── signals.txt │ ├── signing.txt │ ├── templates.txt │ └── testing.txt ├── extras ├── README.TXT ├── csrf_migration_helper.py └── django_bash_completion ├── scripts └── rpm-install.sh ├── setup.cfg ├── setup.py └── tests ├── modeltests ├── __init__.py ├── aggregation │ ├── __init__.py │ ├── fixtures │ │ └── initial_data.json │ ├── models.py │ └── tests.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 ├── 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_2.default.json.gz │ │ ├── db_fixture_3.nosuchdb.json │ │ ├── fixture1.json │ │ ├── fixture2.json │ │ ├── fixture2.xml │ │ ├── fixture3.xml │ │ ├── fixture4.json.zip │ │ ├── fixture5.json.gz │ │ ├── fixture5.json.zip │ │ ├── fixture6.json │ │ ├── fixture7.xml │ │ ├── fixture8.json │ │ ├── fixture9.xml │ │ ├── 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 ├── 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 │ ├── test.png │ ├── test2.png │ └── 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 ├── pagination │ ├── __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 ├── transactions │ ├── __init__.py │ ├── models.py │ └── tests.py ├── unmanaged_models │ ├── __init__.py │ ├── models.py │ └── tests.py ├── update │ ├── __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 │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ ├── app_command.py │ │ │ ├── base_command.py │ │ │ ├── label_command.py │ │ │ └── noargs_command.py │ ├── models.py │ ├── simple_app │ │ ├── __init__.py │ │ └── models.py │ └── tests.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 │ ├── 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 │ │ └── initial_data.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 │ ├── parent │ │ ├── __init__.py │ │ ├── app │ │ │ └── __init__.py │ │ ├── app1 │ │ │ └── __init__.py │ │ └── app_2 │ │ │ └── __init__.py │ ├── test_settings.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 │ ├── test.jpg │ └── 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 │ ├── 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 ├── 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 ├── 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 │ ├── test.png │ ├── test1.png │ └── 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 │ │ └── thingy.json │ ├── models.py │ └── tests.py ├── forms │ ├── __init__.py │ ├── models.py │ └── tests │ │ ├── __init__.py │ │ ├── error_messages.py │ │ ├── extra.py │ │ ├── fields.py │ │ ├── forms.py │ │ ├── formsets.py │ │ ├── input_formats.py │ │ ├── media.py │ │ ├── models.py │ │ ├── regressions.py │ │ ├── util.py │ │ ├── validators.py │ │ └── widgets.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 │ │ └── 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 ├── httpwrappers │ ├── __init__.py │ ├── models.py │ └── tests.py ├── i18n │ ├── __init__.py │ ├── commands │ │ ├── __init__.py │ │ ├── compilation.py │ │ ├── extraction.py │ │ ├── ignore_dir │ │ │ └── ignored.html │ │ ├── javascript.js │ │ ├── locale │ │ │ └── es_AR │ │ │ │ └── LC_MESSAGES │ │ │ │ └── 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 │ │ │ ├── wrong.py │ │ │ └── wrong_namespace.py │ ├── resolution │ │ ├── __init__.py │ │ ├── locale │ │ │ └── de │ │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ └── models.py │ ├── test_warnings.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 ├── locale │ └── de │ │ └── LC_MESSAGES │ │ ├── django.mo │ │ └── django.po ├── localflavor │ ├── __init__.py │ ├── ar │ │ ├── __init__.py │ │ └── tests.py │ ├── at │ │ ├── __init__.py │ │ └── tests.py │ ├── au │ │ ├── __init__.py │ │ ├── forms.py │ │ ├── models.py │ │ └── tests.py │ ├── be │ │ ├── __init__.py │ │ └── tests.py │ ├── br │ │ ├── __init__.py │ │ └── tests.py │ ├── ca │ │ ├── __init__.py │ │ └── tests.py │ ├── ch │ │ ├── __init__.py │ │ └── tests.py │ ├── cl │ │ ├── __init__.py │ │ └── tests.py │ ├── cn │ │ ├── __init__.py │ │ └── tests.py │ ├── co │ │ ├── __init__.py │ │ └── tests.py │ ├── cz │ │ ├── __init__.py │ │ └── tests.py │ ├── de │ │ ├── __init__.py │ │ └── tests.py │ ├── ec │ │ ├── __init__.py │ │ └── tests.py │ ├── es │ │ ├── __init__.py │ │ └── tests.py │ ├── fi │ │ ├── __init__.py │ │ └── tests.py │ ├── fr │ │ ├── __init__.py │ │ └── tests.py │ ├── gb │ │ ├── __init__.py │ │ └── tests.py │ ├── generic │ │ ├── __init__.py │ │ └── tests.py │ ├── hr │ │ ├── __init__.py │ │ └── tests.py │ ├── id │ │ ├── __init__.py │ │ └── tests.py │ ├── ie │ │ ├── __init__.py │ │ └── tests.py │ ├── il │ │ ├── __init__.py │ │ └── tests.py │ ├── in_ │ │ ├── __init__.py │ │ └── tests.py │ ├── is_ │ │ ├── __init__.py │ │ └── tests.py │ ├── it │ │ ├── __init__.py │ │ └── tests.py │ ├── jp │ │ ├── __init__.py │ │ └── tests.py │ ├── kw │ │ ├── __init__.py │ │ └── tests.py │ ├── mk │ │ ├── __init__.py │ │ ├── forms.py │ │ ├── models.py │ │ └── tests.py │ ├── models.py │ ├── mx │ │ ├── __init__.py │ │ ├── forms.py │ │ ├── models.py │ │ ├── mx.py │ │ └── tests.py │ ├── nl │ │ ├── __init__.py │ │ └── tests.py │ ├── pl │ │ ├── __init__.py │ │ └── tests.py │ ├── pt │ │ ├── __init__.py │ │ └── tests.py │ ├── py │ │ ├── __init__.py │ │ └── tests.py │ ├── ro │ │ ├── __init__.py │ │ └── tests.py │ ├── ru │ │ ├── __init__.py │ │ └── tests.py │ ├── se │ │ ├── __init__.py │ │ └── tests.py │ ├── si │ │ ├── __init__.py │ │ └── tests.py │ ├── sk │ │ ├── __init__.py │ │ └── tests.py │ ├── tests.py │ ├── tr │ │ ├── __init__.py │ │ └── tests.py │ ├── us │ │ ├── __init__.py │ │ ├── forms.py │ │ ├── models.py │ │ └── tests.py │ ├── uy │ │ ├── __init__.py │ │ └── tests.py │ └── za │ │ ├── __init__.py │ │ └── tests.py ├── logging_tests │ ├── __init__.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 │ ├── 4x8.png │ ├── 8x4.png │ ├── __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 ├── 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_regress │ ├── __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 ├── 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 │ ├── models.py │ └── tests.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 │ │ │ ├── .hidden │ │ │ ├── CVS │ │ │ ├── backup~ │ │ │ ├── file.txt │ │ │ ├── file1.txt │ │ │ └── test.ignoreme │ ├── models.py │ ├── project │ │ ├── documents │ │ │ ├── cached │ │ │ │ ├── absolute.css │ │ │ │ ├── css │ │ │ │ │ ├── img │ │ │ │ │ │ └── window.png │ │ │ │ │ └── window.css │ │ │ │ ├── denorm.css │ │ │ │ ├── img │ │ │ │ │ └── relative.png │ │ │ │ ├── other.css │ │ │ │ ├── relative.css │ │ │ │ ├── styles.css │ │ │ │ └── url.css │ │ │ ├── subdir │ │ │ │ └── test.txt │ │ │ ├── test.txt │ │ │ └── test │ │ │ │ ├── camelCase.txt │ │ │ │ └── file.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 ├── 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 │ ├── 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 │ ├── urls.py │ └── views.py ├── test_runner │ ├── __init__.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 │ ├── 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 ├── utils │ ├── __init__.py │ ├── baseconv.py │ ├── checksums.py │ ├── datastructures.py │ ├── dateformat.py │ ├── datetime_safe.py │ ├── decorators.py │ ├── eggs │ │ └── test_egg.egg │ ├── feedgenerator.py │ ├── functional.py │ ├── html.py │ ├── http.py │ ├── ipv6.py │ ├── jslex.py │ ├── models.py │ ├── module_loading.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 │ └── tzinfo.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 │ │ ├── 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.txt.gz │ │ └── file.unknown │ ├── models.py │ ├── templates │ │ └── debug │ │ │ ├── render_test.html │ │ │ └── template_exception.html │ ├── templatetags │ │ ├── __init__.py │ │ └── debugtags.py │ ├── tests │ │ ├── __init__.py │ │ ├── debug.py │ │ ├── defaults.py │ │ ├── generic │ │ │ ├── __init__.py │ │ │ ├── create_update.py │ │ │ ├── date_based.py │ │ │ ├── object_list.py │ │ │ └── simple.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 ├── 404.html ├── 500.html ├── 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 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/.gitignore -------------------------------------------------------------------------------- /.hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/.hgignore -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/.tx/config -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/AUTHORS -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/INSTALL -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/README -------------------------------------------------------------------------------- /django/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/__init__.py -------------------------------------------------------------------------------- /django/bin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/bin/daily_cleanup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/bin/daily_cleanup.py -------------------------------------------------------------------------------- /django/bin/django-admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/bin/django-admin.py -------------------------------------------------------------------------------- /django/bin/profiling/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/bin/unique-messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/bin/unique-messages.py -------------------------------------------------------------------------------- /django/conf/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/conf/__init__.py -------------------------------------------------------------------------------- /django/conf/app_template/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/app_template/views.py: -------------------------------------------------------------------------------- 1 | # Create your views here. 2 | -------------------------------------------------------------------------------- /django/conf/global_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/conf/global_settings.py -------------------------------------------------------------------------------- /django/conf/locale/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/conf/locale/__init__.py -------------------------------------------------------------------------------- /django/conf/locale/ar/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/ar/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/conf/locale/ar/formats.py -------------------------------------------------------------------------------- /django/conf/locale/bg/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/bg/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/conf/locale/bg/formats.py -------------------------------------------------------------------------------- /django/conf/locale/bn/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/bn/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/conf/locale/bn/formats.py -------------------------------------------------------------------------------- /django/conf/locale/bs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/bs/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/conf/locale/bs/formats.py -------------------------------------------------------------------------------- /django/conf/locale/ca/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/ca/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/conf/locale/ca/formats.py -------------------------------------------------------------------------------- /django/conf/locale/cs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/cs/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/conf/locale/cs/formats.py -------------------------------------------------------------------------------- /django/conf/locale/cy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/cy/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/conf/locale/cy/formats.py -------------------------------------------------------------------------------- /django/conf/locale/da/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/da/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/conf/locale/da/formats.py -------------------------------------------------------------------------------- /django/conf/locale/de/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/de/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/conf/locale/de/formats.py -------------------------------------------------------------------------------- /django/conf/locale/el/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/el/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/conf/locale/el/formats.py -------------------------------------------------------------------------------- /django/conf/locale/en/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/en/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/conf/locale/en/formats.py -------------------------------------------------------------------------------- /django/conf/locale/en_GB/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/es/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/es/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/conf/locale/es/formats.py -------------------------------------------------------------------------------- /django/conf/locale/es_AR/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/es_MX/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/es_NI/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/et/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/et/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/conf/locale/et/formats.py -------------------------------------------------------------------------------- /django/conf/locale/eu/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/eu/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/conf/locale/eu/formats.py -------------------------------------------------------------------------------- /django/conf/locale/fa/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/fa/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/conf/locale/fa/formats.py -------------------------------------------------------------------------------- /django/conf/locale/fi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/fi/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/conf/locale/fi/formats.py -------------------------------------------------------------------------------- /django/conf/locale/fr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/fr/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/conf/locale/fr/formats.py -------------------------------------------------------------------------------- /django/conf/locale/fy_NL/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/ga/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/ga/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/conf/locale/ga/formats.py -------------------------------------------------------------------------------- /django/conf/locale/gl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/gl/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/conf/locale/gl/formats.py -------------------------------------------------------------------------------- /django/conf/locale/he/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/he/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/conf/locale/he/formats.py -------------------------------------------------------------------------------- /django/conf/locale/hi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/hi/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/conf/locale/hi/formats.py -------------------------------------------------------------------------------- /django/conf/locale/hr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/hr/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/conf/locale/hr/formats.py -------------------------------------------------------------------------------- /django/conf/locale/hu/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/hu/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/conf/locale/hu/formats.py -------------------------------------------------------------------------------- /django/conf/locale/id/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/id/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/conf/locale/id/formats.py -------------------------------------------------------------------------------- /django/conf/locale/is/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/is/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/conf/locale/is/formats.py -------------------------------------------------------------------------------- /django/conf/locale/it/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/it/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/conf/locale/it/formats.py -------------------------------------------------------------------------------- /django/conf/locale/ja/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/ja/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/conf/locale/ja/formats.py -------------------------------------------------------------------------------- /django/conf/locale/ka/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/ka/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/conf/locale/ka/formats.py -------------------------------------------------------------------------------- /django/conf/locale/km/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/km/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/conf/locale/km/formats.py -------------------------------------------------------------------------------- /django/conf/locale/kn/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/kn/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/conf/locale/kn/formats.py -------------------------------------------------------------------------------- /django/conf/locale/ko/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/ko/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/conf/locale/ko/formats.py -------------------------------------------------------------------------------- /django/conf/locale/lt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/lt/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/conf/locale/lt/formats.py -------------------------------------------------------------------------------- /django/conf/locale/lv/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/lv/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/conf/locale/lv/formats.py -------------------------------------------------------------------------------- /django/conf/locale/mk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/mk/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/conf/locale/mk/formats.py -------------------------------------------------------------------------------- /django/conf/locale/ml/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/ml/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/conf/locale/ml/formats.py -------------------------------------------------------------------------------- /django/conf/locale/mn/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/mn/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/conf/locale/mn/formats.py -------------------------------------------------------------------------------- /django/conf/locale/nb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/nb/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/conf/locale/nb/formats.py -------------------------------------------------------------------------------- /django/conf/locale/nl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/nl/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/conf/locale/nl/formats.py -------------------------------------------------------------------------------- /django/conf/locale/nn/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/nn/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/conf/locale/nn/formats.py -------------------------------------------------------------------------------- /django/conf/locale/pl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/pl/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/conf/locale/pl/formats.py -------------------------------------------------------------------------------- /django/conf/locale/pt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/pt/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/conf/locale/pt/formats.py -------------------------------------------------------------------------------- /django/conf/locale/pt_BR/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/ro/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/ro/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/conf/locale/ro/formats.py -------------------------------------------------------------------------------- /django/conf/locale/ru/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/ru/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/conf/locale/ru/formats.py -------------------------------------------------------------------------------- /django/conf/locale/sk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/sk/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/conf/locale/sk/formats.py -------------------------------------------------------------------------------- /django/conf/locale/sl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/sl/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/conf/locale/sl/formats.py -------------------------------------------------------------------------------- /django/conf/locale/sq/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/sq/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/conf/locale/sq/formats.py -------------------------------------------------------------------------------- /django/conf/locale/sr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/sr/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/conf/locale/sr/formats.py -------------------------------------------------------------------------------- /django/conf/locale/sr_Latn/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/sv/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/sv/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/conf/locale/sv/formats.py -------------------------------------------------------------------------------- /django/conf/locale/ta/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/ta/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/conf/locale/ta/formats.py -------------------------------------------------------------------------------- /django/conf/locale/te/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/te/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/conf/locale/te/formats.py -------------------------------------------------------------------------------- /django/conf/locale/th/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/th/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/conf/locale/th/formats.py -------------------------------------------------------------------------------- /django/conf/locale/tr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/tr/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/conf/locale/tr/formats.py -------------------------------------------------------------------------------- /django/conf/locale/uk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/uk/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/conf/locale/uk/formats.py -------------------------------------------------------------------------------- /django/conf/locale/vi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/vi/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/conf/locale/vi/formats.py -------------------------------------------------------------------------------- /django/conf/locale/zh_CN/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/zh_TW/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/project_template/project_name/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/urls/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/conf/urls/__init__.py -------------------------------------------------------------------------------- /django/conf/urls/defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/conf/urls/defaults.py -------------------------------------------------------------------------------- /django/conf/urls/i18n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/conf/urls/i18n.py -------------------------------------------------------------------------------- /django/conf/urls/shortcut.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/conf/urls/shortcut.py -------------------------------------------------------------------------------- /django/conf/urls/static.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/conf/urls/static.py -------------------------------------------------------------------------------- /django/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/admin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/contrib/admin/__init__.py -------------------------------------------------------------------------------- /django/contrib/admin/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/contrib/admin/actions.py -------------------------------------------------------------------------------- /django/contrib/admin/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/contrib/admin/filters.py -------------------------------------------------------------------------------- /django/contrib/admin/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/contrib/admin/forms.py -------------------------------------------------------------------------------- /django/contrib/admin/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/contrib/admin/helpers.py -------------------------------------------------------------------------------- /django/contrib/admin/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/contrib/admin/models.py -------------------------------------------------------------------------------- /django/contrib/admin/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/contrib/admin/options.py -------------------------------------------------------------------------------- /django/contrib/admin/sites.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/contrib/admin/sites.py -------------------------------------------------------------------------------- /django/contrib/admin/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/admin/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/contrib/admin/util.py -------------------------------------------------------------------------------- /django/contrib/admin/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/admin/widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/contrib/admin/widgets.py -------------------------------------------------------------------------------- /django/contrib/admindocs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/admindocs/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/contrib/admindocs/urls.py -------------------------------------------------------------------------------- /django/contrib/auth/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/contrib/auth/__init__.py -------------------------------------------------------------------------------- /django/contrib/auth/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/contrib/auth/admin.py -------------------------------------------------------------------------------- /django/contrib/auth/backends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/contrib/auth/backends.py -------------------------------------------------------------------------------- /django/contrib/auth/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/contrib/auth/forms.py -------------------------------------------------------------------------------- /django/contrib/auth/handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/auth/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/auth/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/contrib/auth/models.py -------------------------------------------------------------------------------- /django/contrib/auth/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/contrib/auth/signals.py -------------------------------------------------------------------------------- /django/contrib/auth/tests/templates/context_processors/auth_attrs_access.html: -------------------------------------------------------------------------------- 1 | {{ user }} 2 | -------------------------------------------------------------------------------- /django/contrib/auth/tests/templates/context_processors/auth_attrs_no_access.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /django/contrib/auth/tests/templates/registration/logged_out.html: -------------------------------------------------------------------------------- 1 | Logged out -------------------------------------------------------------------------------- /django/contrib/auth/tests/templates/registration/login.html: -------------------------------------------------------------------------------- 1 | {{ form.as_ul }} -------------------------------------------------------------------------------- /django/contrib/auth/tests/templates/registration/password_change_form.html: -------------------------------------------------------------------------------- 1 | {{ form }} -------------------------------------------------------------------------------- /django/contrib/auth/tests/templates/registration/password_reset_complete.html: -------------------------------------------------------------------------------- 1 | Password reset successfully -------------------------------------------------------------------------------- /django/contrib/auth/tests/templates/registration/password_reset_done.html: -------------------------------------------------------------------------------- 1 | E-mail sent -------------------------------------------------------------------------------- /django/contrib/auth/tests/templates/registration/password_reset_form.html: -------------------------------------------------------------------------------- 1 | {{ form }} -------------------------------------------------------------------------------- /django/contrib/auth/tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/contrib/auth/tokens.py -------------------------------------------------------------------------------- /django/contrib/auth/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/contrib/auth/urls.py -------------------------------------------------------------------------------- /django/contrib/auth/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/contrib/auth/utils.py -------------------------------------------------------------------------------- /django/contrib/auth/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/contrib/auth/views.py -------------------------------------------------------------------------------- /django/contrib/comments/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/contrib/comments/admin.py -------------------------------------------------------------------------------- /django/contrib/comments/feeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/contrib/comments/feeds.py -------------------------------------------------------------------------------- /django/contrib/comments/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/contrib/comments/forms.py -------------------------------------------------------------------------------- /django/contrib/comments/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/comments/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/contrib/comments/urls.py -------------------------------------------------------------------------------- /django/contrib/comments/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/contenttypes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/databrowse/plugins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/databrowse/templates/databrowse/base_site.html: -------------------------------------------------------------------------------- 1 | {% extends "databrowse/base.html" %} 2 | -------------------------------------------------------------------------------- /django/contrib/flatpages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/flatpages/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/flatpages/tests/templates/404.html: -------------------------------------------------------------------------------- 1 |

Oh Noes!

-------------------------------------------------------------------------------- /django/contrib/flatpages/tests/templates/registration/login.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/flatpages/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/contrib/flatpages/urls.py -------------------------------------------------------------------------------- /django/contrib/formtools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/formtools/tests/wizard/namedwizardtests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/formtools/tests/wizard/wizardtests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/gis/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/gis/db/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/gis/db/backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/gis/db/backends/mysql/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/gis/db/backends/oracle/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/gis/db/backends/postgis/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/gis/db/backends/spatialite/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/gis/feeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/contrib/gis/feeds.py -------------------------------------------------------------------------------- /django/contrib/gis/gdal/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/contrib/gis/gdal/LICENSE -------------------------------------------------------------------------------- /django/contrib/gis/gdal/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/contrib/gis/gdal/base.py -------------------------------------------------------------------------------- /django/contrib/gis/gdal/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/contrib/gis/gdal/error.py -------------------------------------------------------------------------------- /django/contrib/gis/gdal/field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/contrib/gis/gdal/field.py -------------------------------------------------------------------------------- /django/contrib/gis/gdal/layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/contrib/gis/gdal/layer.py -------------------------------------------------------------------------------- /django/contrib/gis/gdal/prototypes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/gis/gdal/srs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/contrib/gis/gdal/srs.py -------------------------------------------------------------------------------- /django/contrib/gis/geoip/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/contrib/gis/geoip/base.py -------------------------------------------------------------------------------- /django/contrib/gis/geometry/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/gis/geos/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/contrib/gis/geos/LICENSE -------------------------------------------------------------------------------- /django/contrib/gis/geos/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/contrib/gis/geos/base.py -------------------------------------------------------------------------------- /django/contrib/gis/geos/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/contrib/gis/geos/error.py -------------------------------------------------------------------------------- /django/contrib/gis/geos/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/contrib/gis/geos/io.py -------------------------------------------------------------------------------- /django/contrib/gis/geos/point.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/contrib/gis/geos/point.py -------------------------------------------------------------------------------- /django/contrib/gis/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/gis/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/gis/maps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/gis/maps/openlayers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/gis/measure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/contrib/gis/measure.py -------------------------------------------------------------------------------- /django/contrib/gis/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/contrib/gis/models.py -------------------------------------------------------------------------------- /django/contrib/gis/tests/distapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/gis/tests/geo3d/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/gis/tests/geo3d/views.py: -------------------------------------------------------------------------------- 1 | # Create your views here. 2 | -------------------------------------------------------------------------------- /django/contrib/gis/tests/geoadmin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/gis/tests/geoapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/gis/tests/geogapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/gis/tests/inspectapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/gis/tests/layermap/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/gis/tests/relatedapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/gis/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/contrib/gis/views.py -------------------------------------------------------------------------------- /django/contrib/humanize/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/humanize/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/humanize/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/localflavor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/localflavor/ar/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/localflavor/at/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/localflavor/au/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/localflavor/be/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/localflavor/br/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/localflavor/ca/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/localflavor/ch/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/localflavor/cl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/localflavor/cn/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/localflavor/co/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/localflavor/cz/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/localflavor/de/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/localflavor/ec/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/localflavor/es/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/localflavor/fi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/localflavor/fr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/localflavor/gb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/localflavor/generic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/localflavor/hr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/localflavor/id/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/localflavor/ie/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/localflavor/il/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/localflavor/in_/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/localflavor/is_/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/localflavor/it/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/localflavor/jp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/localflavor/kw/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/localflavor/mk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/localflavor/mx/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/localflavor/nl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/localflavor/no/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/localflavor/pe/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/localflavor/pl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/localflavor/pt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/localflavor/py/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/localflavor/ro/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/localflavor/ru/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/localflavor/se/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/localflavor/si/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/localflavor/sk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/localflavor/tr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/localflavor/uk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/localflavor/us/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/localflavor/uy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/localflavor/za/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/markup/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/markup/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/markup/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/markup/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/contrib/markup/tests.py -------------------------------------------------------------------------------- /django/contrib/messages/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/contrib/messages/api.py -------------------------------------------------------------------------------- /django/contrib/messages/models.py: -------------------------------------------------------------------------------- 1 | # Models module required so tests are discovered. 2 | -------------------------------------------------------------------------------- /django/contrib/redirects/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/sessions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/sessions/backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/sitemaps/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/sitemaps/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/sitemaps/models.py: -------------------------------------------------------------------------------- 1 | # This file intentionally left blank -------------------------------------------------------------------------------- /django/contrib/sitemaps/tests/__init__.py: -------------------------------------------------------------------------------- 1 | from django.contrib.sitemaps.tests.basic import * 2 | -------------------------------------------------------------------------------- /django/contrib/sites/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/sites/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/contrib/sites/admin.py -------------------------------------------------------------------------------- /django/contrib/sites/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/contrib/sites/models.py -------------------------------------------------------------------------------- /django/contrib/sites/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/contrib/sites/tests.py -------------------------------------------------------------------------------- /django/contrib/staticfiles/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/staticfiles/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/staticfiles/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/staticfiles/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/staticfiles/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/syndication/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/webdesign/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/webdesign/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/webdesign/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/core/cache/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/core/cache/__init__.py -------------------------------------------------------------------------------- /django/core/cache/backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/core/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/core/exceptions.py -------------------------------------------------------------------------------- /django/core/files/__init__.py: -------------------------------------------------------------------------------- 1 | from django.core.files.base import File 2 | -------------------------------------------------------------------------------- /django/core/files/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/core/files/base.py -------------------------------------------------------------------------------- /django/core/files/images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/core/files/images.py -------------------------------------------------------------------------------- /django/core/files/locks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/core/files/locks.py -------------------------------------------------------------------------------- /django/core/files/move.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/core/files/move.py -------------------------------------------------------------------------------- /django/core/files/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/core/files/storage.py -------------------------------------------------------------------------------- /django/core/files/temp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/core/files/temp.py -------------------------------------------------------------------------------- /django/core/files/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/core/files/utils.py -------------------------------------------------------------------------------- /django/core/handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/core/handlers/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/core/handlers/base.py -------------------------------------------------------------------------------- /django/core/handlers/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/core/handlers/wsgi.py -------------------------------------------------------------------------------- /django/core/mail/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/core/mail/__init__.py -------------------------------------------------------------------------------- /django/core/mail/backends/__init__.py: -------------------------------------------------------------------------------- 1 | # Mail backends shipped with Django. 2 | -------------------------------------------------------------------------------- /django/core/mail/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/core/mail/message.py -------------------------------------------------------------------------------- /django/core/mail/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/core/mail/utils.py -------------------------------------------------------------------------------- /django/core/management/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/core/management/base.py -------------------------------------------------------------------------------- /django/core/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/core/management/sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/core/management/sql.py -------------------------------------------------------------------------------- /django/core/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/core/paginator.py -------------------------------------------------------------------------------- /django/core/servers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/core/servers/fastcgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/core/servers/fastcgi.py -------------------------------------------------------------------------------- /django/core/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/core/signals.py -------------------------------------------------------------------------------- /django/core/signing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/core/signing.py -------------------------------------------------------------------------------- /django/core/urlresolvers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/core/urlresolvers.py -------------------------------------------------------------------------------- /django/core/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/core/validators.py -------------------------------------------------------------------------------- /django/core/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/core/wsgi.py -------------------------------------------------------------------------------- /django/core/xheaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/core/xheaders.py -------------------------------------------------------------------------------- /django/db/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/db/__init__.py -------------------------------------------------------------------------------- /django/db/backends/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/db/backends/__init__.py -------------------------------------------------------------------------------- /django/db/backends/creation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/db/backends/creation.py -------------------------------------------------------------------------------- /django/db/backends/dummy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/db/backends/mysql/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/db/backends/oracle/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/db/backends/postgresql_psycopg2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/db/backends/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/db/backends/signals.py -------------------------------------------------------------------------------- /django/db/backends/sqlite3/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/db/backends/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/db/backends/util.py -------------------------------------------------------------------------------- /django/db/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/db/models/__init__.py -------------------------------------------------------------------------------- /django/db/models/aggregates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/db/models/aggregates.py -------------------------------------------------------------------------------- /django/db/models/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/db/models/base.py -------------------------------------------------------------------------------- /django/db/models/deletion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/db/models/deletion.py -------------------------------------------------------------------------------- /django/db/models/loading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/db/models/loading.py -------------------------------------------------------------------------------- /django/db/models/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/db/models/manager.py -------------------------------------------------------------------------------- /django/db/models/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/db/models/options.py -------------------------------------------------------------------------------- /django/db/models/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/db/models/query.py -------------------------------------------------------------------------------- /django/db/models/related.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/db/models/related.py -------------------------------------------------------------------------------- /django/db/models/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/db/models/signals.py -------------------------------------------------------------------------------- /django/db/models/sql/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/db/models/sql/query.py -------------------------------------------------------------------------------- /django/db/models/sql/where.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/db/models/sql/where.py -------------------------------------------------------------------------------- /django/db/transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/db/transaction.py -------------------------------------------------------------------------------- /django/db/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/db/utils.py -------------------------------------------------------------------------------- /django/dispatch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/dispatch/__init__.py -------------------------------------------------------------------------------- /django/dispatch/dispatcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/dispatch/dispatcher.py -------------------------------------------------------------------------------- /django/dispatch/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/dispatch/license.txt -------------------------------------------------------------------------------- /django/dispatch/saferef.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/dispatch/saferef.py -------------------------------------------------------------------------------- /django/forms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/forms/__init__.py -------------------------------------------------------------------------------- /django/forms/extras/widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/forms/extras/widgets.py -------------------------------------------------------------------------------- /django/forms/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/forms/fields.py -------------------------------------------------------------------------------- /django/forms/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/forms/forms.py -------------------------------------------------------------------------------- /django/forms/formsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/forms/formsets.py -------------------------------------------------------------------------------- /django/forms/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/forms/models.py -------------------------------------------------------------------------------- /django/forms/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/forms/util.py -------------------------------------------------------------------------------- /django/forms/widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/forms/widgets.py -------------------------------------------------------------------------------- /django/http/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/http/__init__.py -------------------------------------------------------------------------------- /django/http/multipartparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/http/multipartparser.py -------------------------------------------------------------------------------- /django/http/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/http/utils.py -------------------------------------------------------------------------------- /django/middleware/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/middleware/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/middleware/cache.py -------------------------------------------------------------------------------- /django/middleware/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/middleware/common.py -------------------------------------------------------------------------------- /django/middleware/csrf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/middleware/csrf.py -------------------------------------------------------------------------------- /django/middleware/doc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/middleware/doc.py -------------------------------------------------------------------------------- /django/middleware/gzip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/middleware/gzip.py -------------------------------------------------------------------------------- /django/middleware/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/middleware/http.py -------------------------------------------------------------------------------- /django/middleware/locale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/middleware/locale.py -------------------------------------------------------------------------------- /django/shortcuts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/shortcuts/__init__.py -------------------------------------------------------------------------------- /django/template/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/template/__init__.py -------------------------------------------------------------------------------- /django/template/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/template/base.py -------------------------------------------------------------------------------- /django/template/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/template/context.py -------------------------------------------------------------------------------- /django/template/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/template/debug.py -------------------------------------------------------------------------------- /django/template/defaulttags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/template/defaulttags.py -------------------------------------------------------------------------------- /django/template/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/template/loader.py -------------------------------------------------------------------------------- /django/template/loader_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/template/loader_tags.py -------------------------------------------------------------------------------- /django/template/loaders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/template/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/template/response.py -------------------------------------------------------------------------------- /django/template/smartif.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/template/smartif.py -------------------------------------------------------------------------------- /django/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/templatetags/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/templatetags/cache.py -------------------------------------------------------------------------------- /django/templatetags/future.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/templatetags/future.py -------------------------------------------------------------------------------- /django/templatetags/i18n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/templatetags/i18n.py -------------------------------------------------------------------------------- /django/templatetags/l10n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/templatetags/l10n.py -------------------------------------------------------------------------------- /django/templatetags/static.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/templatetags/static.py -------------------------------------------------------------------------------- /django/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/test/__init__.py -------------------------------------------------------------------------------- /django/test/_doctest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/test/_doctest.py -------------------------------------------------------------------------------- /django/test/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/test/client.py -------------------------------------------------------------------------------- /django/test/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/test/signals.py -------------------------------------------------------------------------------- /django/test/simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/test/simple.py -------------------------------------------------------------------------------- /django/test/testcases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/test/testcases.py -------------------------------------------------------------------------------- /django/test/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/test/utils.py -------------------------------------------------------------------------------- /django/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/utils/_os.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/utils/_os.py -------------------------------------------------------------------------------- /django/utils/autoreload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/utils/autoreload.py -------------------------------------------------------------------------------- /django/utils/baseconv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/utils/baseconv.py -------------------------------------------------------------------------------- /django/utils/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/utils/cache.py -------------------------------------------------------------------------------- /django/utils/checksums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/utils/checksums.py -------------------------------------------------------------------------------- /django/utils/copycompat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/utils/copycompat.py -------------------------------------------------------------------------------- /django/utils/crypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/utils/crypto.py -------------------------------------------------------------------------------- /django/utils/daemonize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/utils/daemonize.py -------------------------------------------------------------------------------- /django/utils/datastructures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/utils/datastructures.py -------------------------------------------------------------------------------- /django/utils/dateformat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/utils/dateformat.py -------------------------------------------------------------------------------- /django/utils/dates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/utils/dates.py -------------------------------------------------------------------------------- /django/utils/datetime_safe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/utils/datetime_safe.py -------------------------------------------------------------------------------- /django/utils/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/utils/decorators.py -------------------------------------------------------------------------------- /django/utils/dictconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/utils/dictconfig.py -------------------------------------------------------------------------------- /django/utils/encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/utils/encoding.py -------------------------------------------------------------------------------- /django/utils/feedgenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/utils/feedgenerator.py -------------------------------------------------------------------------------- /django/utils/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/utils/formats.py -------------------------------------------------------------------------------- /django/utils/functional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/utils/functional.py -------------------------------------------------------------------------------- /django/utils/hashcompat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/utils/hashcompat.py -------------------------------------------------------------------------------- /django/utils/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/utils/html.py -------------------------------------------------------------------------------- /django/utils/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/utils/http.py -------------------------------------------------------------------------------- /django/utils/importlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/utils/importlib.py -------------------------------------------------------------------------------- /django/utils/ipv6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/utils/ipv6.py -------------------------------------------------------------------------------- /django/utils/itercompat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/utils/itercompat.py -------------------------------------------------------------------------------- /django/utils/jslex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/utils/jslex.py -------------------------------------------------------------------------------- /django/utils/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/utils/log.py -------------------------------------------------------------------------------- /django/utils/module_loading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/utils/module_loading.py -------------------------------------------------------------------------------- /django/utils/numberformat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/utils/numberformat.py -------------------------------------------------------------------------------- /django/utils/regex_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/utils/regex_helper.py -------------------------------------------------------------------------------- /django/utils/safestring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/utils/safestring.py -------------------------------------------------------------------------------- /django/utils/synch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/utils/synch.py -------------------------------------------------------------------------------- /django/utils/termcolors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/utils/termcolors.py -------------------------------------------------------------------------------- /django/utils/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/utils/text.py -------------------------------------------------------------------------------- /django/utils/timesince.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/utils/timesince.py -------------------------------------------------------------------------------- /django/utils/tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/utils/tree.py -------------------------------------------------------------------------------- /django/utils/tzinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/utils/tzinfo.py -------------------------------------------------------------------------------- /django/utils/unittest/case.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/utils/unittest/case.py -------------------------------------------------------------------------------- /django/utils/unittest/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/utils/unittest/main.py -------------------------------------------------------------------------------- /django/utils/unittest/suite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/utils/unittest/suite.py -------------------------------------------------------------------------------- /django/utils/unittest/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/utils/unittest/util.py -------------------------------------------------------------------------------- /django/utils/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/utils/version.py -------------------------------------------------------------------------------- /django/utils/xmlutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/utils/xmlutils.py -------------------------------------------------------------------------------- /django/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/views/csrf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/views/csrf.py -------------------------------------------------------------------------------- /django/views/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/views/debug.py -------------------------------------------------------------------------------- /django/views/decorators/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/views/defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/views/defaults.py -------------------------------------------------------------------------------- /django/views/generic/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/views/generic/base.py -------------------------------------------------------------------------------- /django/views/generic/dates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/views/generic/dates.py -------------------------------------------------------------------------------- /django/views/generic/detail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/views/generic/detail.py -------------------------------------------------------------------------------- /django/views/generic/edit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/views/generic/edit.py -------------------------------------------------------------------------------- /django/views/generic/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/views/generic/list.py -------------------------------------------------------------------------------- /django/views/generic/simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/views/generic/simple.py -------------------------------------------------------------------------------- /django/views/i18n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/views/i18n.py -------------------------------------------------------------------------------- /django/views/static.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/django/views/static.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/README -------------------------------------------------------------------------------- /docs/_ext/applyxrefs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/_ext/applyxrefs.py -------------------------------------------------------------------------------- /docs/_ext/djangodocs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/_ext/djangodocs.py -------------------------------------------------------------------------------- /docs/_ext/literals_to_xrefs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/_ext/literals_to_xrefs.py -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contents.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/contents.txt -------------------------------------------------------------------------------- /docs/faq/admin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/faq/admin.txt -------------------------------------------------------------------------------- /docs/faq/contributing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/faq/contributing.txt -------------------------------------------------------------------------------- /docs/faq/general.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/faq/general.txt -------------------------------------------------------------------------------- /docs/faq/help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/faq/help.txt -------------------------------------------------------------------------------- /docs/faq/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/faq/index.txt -------------------------------------------------------------------------------- /docs/faq/install.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/faq/install.txt -------------------------------------------------------------------------------- /docs/faq/models.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/faq/models.txt -------------------------------------------------------------------------------- /docs/faq/usage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/faq/usage.txt -------------------------------------------------------------------------------- /docs/glossary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/glossary.txt -------------------------------------------------------------------------------- /docs/howto/apache-auth.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/howto/apache-auth.txt -------------------------------------------------------------------------------- /docs/howto/error-reporting.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/howto/error-reporting.txt -------------------------------------------------------------------------------- /docs/howto/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/howto/index.txt -------------------------------------------------------------------------------- /docs/howto/initial-data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/howto/initial-data.txt -------------------------------------------------------------------------------- /docs/howto/jython.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/howto/jython.txt -------------------------------------------------------------------------------- /docs/howto/outputting-csv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/howto/outputting-csv.txt -------------------------------------------------------------------------------- /docs/howto/outputting-pdf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/howto/outputting-pdf.txt -------------------------------------------------------------------------------- /docs/howto/static-files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/howto/static-files.txt -------------------------------------------------------------------------------- /docs/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/index.txt -------------------------------------------------------------------------------- /docs/internals/committers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/internals/committers.txt -------------------------------------------------------------------------------- /docs/internals/deprecation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/internals/deprecation.txt -------------------------------------------------------------------------------- /docs/internals/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/internals/index.txt -------------------------------------------------------------------------------- /docs/internals/svn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/internals/svn.txt -------------------------------------------------------------------------------- /docs/intro/_images/admin01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/intro/_images/admin01.png -------------------------------------------------------------------------------- /docs/intro/_images/admin02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/intro/_images/admin02.png -------------------------------------------------------------------------------- /docs/intro/_images/admin03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/intro/_images/admin03.png -------------------------------------------------------------------------------- /docs/intro/_images/admin04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/intro/_images/admin04.png -------------------------------------------------------------------------------- /docs/intro/_images/admin05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/intro/_images/admin05.png -------------------------------------------------------------------------------- /docs/intro/_images/admin06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/intro/_images/admin06.png -------------------------------------------------------------------------------- /docs/intro/_images/admin07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/intro/_images/admin07.png -------------------------------------------------------------------------------- /docs/intro/_images/admin08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/intro/_images/admin08.png -------------------------------------------------------------------------------- /docs/intro/_images/admin09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/intro/_images/admin09.png -------------------------------------------------------------------------------- /docs/intro/_images/admin10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/intro/_images/admin10.png -------------------------------------------------------------------------------- /docs/intro/_images/admin11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/intro/_images/admin11.png -------------------------------------------------------------------------------- /docs/intro/_images/admin12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/intro/_images/admin12.png -------------------------------------------------------------------------------- /docs/intro/_images/admin13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/intro/_images/admin13.png -------------------------------------------------------------------------------- /docs/intro/_images/admin14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/intro/_images/admin14.png -------------------------------------------------------------------------------- /docs/intro/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/intro/index.txt -------------------------------------------------------------------------------- /docs/intro/install.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/intro/install.txt -------------------------------------------------------------------------------- /docs/intro/overview.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/intro/overview.txt -------------------------------------------------------------------------------- /docs/intro/tutorial01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/intro/tutorial01.txt -------------------------------------------------------------------------------- /docs/intro/tutorial02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/intro/tutorial02.txt -------------------------------------------------------------------------------- /docs/intro/tutorial03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/intro/tutorial03.txt -------------------------------------------------------------------------------- /docs/intro/tutorial04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/intro/tutorial04.txt -------------------------------------------------------------------------------- /docs/intro/whatsnext.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/intro/whatsnext.txt -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/man/daily_cleanup.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/man/daily_cleanup.1 -------------------------------------------------------------------------------- /docs/man/django-admin.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/man/django-admin.1 -------------------------------------------------------------------------------- /docs/misc/api-stability.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/misc/api-stability.txt -------------------------------------------------------------------------------- /docs/misc/distributions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/misc/distributions.txt -------------------------------------------------------------------------------- /docs/misc/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/misc/index.txt -------------------------------------------------------------------------------- /docs/obsolete/admin-css.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/obsolete/admin-css.txt -------------------------------------------------------------------------------- /docs/obsolete/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/obsolete/index.txt -------------------------------------------------------------------------------- /docs/ref/authbackends.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/ref/authbackends.txt -------------------------------------------------------------------------------- /docs/ref/class-based-views.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/ref/class-based-views.txt -------------------------------------------------------------------------------- /docs/ref/clickjacking.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/ref/clickjacking.txt -------------------------------------------------------------------------------- /docs/ref/contrib/auth.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/ref/contrib/auth.txt -------------------------------------------------------------------------------- /docs/ref/contrib/csrf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/ref/contrib/csrf.txt -------------------------------------------------------------------------------- /docs/ref/contrib/flatpages.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/ref/contrib/flatpages.txt -------------------------------------------------------------------------------- /docs/ref/contrib/gis/admin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/ref/contrib/gis/admin.txt -------------------------------------------------------------------------------- /docs/ref/contrib/gis/feeds.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/ref/contrib/gis/feeds.txt -------------------------------------------------------------------------------- /docs/ref/contrib/gis/gdal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/ref/contrib/gis/gdal.txt -------------------------------------------------------------------------------- /docs/ref/contrib/gis/geoip.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/ref/contrib/gis/geoip.txt -------------------------------------------------------------------------------- /docs/ref/contrib/gis/geos.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/ref/contrib/gis/geos.txt -------------------------------------------------------------------------------- /docs/ref/contrib/gis/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/ref/contrib/gis/index.txt -------------------------------------------------------------------------------- /docs/ref/contrib/gis/utils.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/ref/contrib/gis/utils.txt -------------------------------------------------------------------------------- /docs/ref/contrib/humanize.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/ref/contrib/humanize.txt -------------------------------------------------------------------------------- /docs/ref/contrib/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/ref/contrib/index.txt -------------------------------------------------------------------------------- /docs/ref/contrib/markup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/ref/contrib/markup.txt -------------------------------------------------------------------------------- /docs/ref/contrib/messages.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/ref/contrib/messages.txt -------------------------------------------------------------------------------- /docs/ref/contrib/redirects.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/ref/contrib/redirects.txt -------------------------------------------------------------------------------- /docs/ref/contrib/sitemaps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/ref/contrib/sitemaps.txt -------------------------------------------------------------------------------- /docs/ref/contrib/sites.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/ref/contrib/sites.txt -------------------------------------------------------------------------------- /docs/ref/contrib/webdesign.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/ref/contrib/webdesign.txt -------------------------------------------------------------------------------- /docs/ref/databases.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/ref/databases.txt -------------------------------------------------------------------------------- /docs/ref/django-admin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/ref/django-admin.txt -------------------------------------------------------------------------------- /docs/ref/exceptions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/ref/exceptions.txt -------------------------------------------------------------------------------- /docs/ref/files/file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/ref/files/file.txt -------------------------------------------------------------------------------- /docs/ref/files/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/ref/files/index.txt -------------------------------------------------------------------------------- /docs/ref/files/storage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/ref/files/storage.txt -------------------------------------------------------------------------------- /docs/ref/forms/api.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/ref/forms/api.txt -------------------------------------------------------------------------------- /docs/ref/forms/fields.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/ref/forms/fields.txt -------------------------------------------------------------------------------- /docs/ref/forms/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/ref/forms/index.txt -------------------------------------------------------------------------------- /docs/ref/forms/validation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/ref/forms/validation.txt -------------------------------------------------------------------------------- /docs/ref/forms/widgets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/ref/forms/widgets.txt -------------------------------------------------------------------------------- /docs/ref/generic-views.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/ref/generic-views.txt -------------------------------------------------------------------------------- /docs/ref/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/ref/index.txt -------------------------------------------------------------------------------- /docs/ref/middleware.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/ref/middleware.txt -------------------------------------------------------------------------------- /docs/ref/models/fields.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/ref/models/fields.txt -------------------------------------------------------------------------------- /docs/ref/models/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/ref/models/index.txt -------------------------------------------------------------------------------- /docs/ref/models/instances.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/ref/models/instances.txt -------------------------------------------------------------------------------- /docs/ref/models/options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/ref/models/options.txt -------------------------------------------------------------------------------- /docs/ref/models/querysets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/ref/models/querysets.txt -------------------------------------------------------------------------------- /docs/ref/models/relations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/ref/models/relations.txt -------------------------------------------------------------------------------- /docs/ref/request-response.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/ref/request-response.txt -------------------------------------------------------------------------------- /docs/ref/settings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/ref/settings.txt -------------------------------------------------------------------------------- /docs/ref/signals.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/ref/signals.txt -------------------------------------------------------------------------------- /docs/ref/template-response.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/ref/template-response.txt -------------------------------------------------------------------------------- /docs/ref/templates/api.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/ref/templates/api.txt -------------------------------------------------------------------------------- /docs/ref/templates/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/ref/templates/index.txt -------------------------------------------------------------------------------- /docs/ref/unicode.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/ref/unicode.txt -------------------------------------------------------------------------------- /docs/ref/utils.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/ref/utils.txt -------------------------------------------------------------------------------- /docs/ref/validators.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/ref/validators.txt -------------------------------------------------------------------------------- /docs/releases/0.95.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/releases/0.95.txt -------------------------------------------------------------------------------- /docs/releases/0.96.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/releases/0.96.txt -------------------------------------------------------------------------------- /docs/releases/1.0-alpha-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/releases/1.0-alpha-1.txt -------------------------------------------------------------------------------- /docs/releases/1.0-alpha-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/releases/1.0-alpha-2.txt -------------------------------------------------------------------------------- /docs/releases/1.0-beta-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/releases/1.0-beta-2.txt -------------------------------------------------------------------------------- /docs/releases/1.0-beta.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/releases/1.0-beta.txt -------------------------------------------------------------------------------- /docs/releases/1.0.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/releases/1.0.1.txt -------------------------------------------------------------------------------- /docs/releases/1.0.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/releases/1.0.2.txt -------------------------------------------------------------------------------- /docs/releases/1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/releases/1.0.txt -------------------------------------------------------------------------------- /docs/releases/1.1-alpha-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/releases/1.1-alpha-1.txt -------------------------------------------------------------------------------- /docs/releases/1.1-beta-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/releases/1.1-beta-1.txt -------------------------------------------------------------------------------- /docs/releases/1.1-rc-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/releases/1.1-rc-1.txt -------------------------------------------------------------------------------- /docs/releases/1.1.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/releases/1.1.2.txt -------------------------------------------------------------------------------- /docs/releases/1.1.3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/releases/1.1.3.txt -------------------------------------------------------------------------------- /docs/releases/1.1.4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/releases/1.1.4.txt -------------------------------------------------------------------------------- /docs/releases/1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/releases/1.1.txt -------------------------------------------------------------------------------- /docs/releases/1.2-alpha-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/releases/1.2-alpha-1.txt -------------------------------------------------------------------------------- /docs/releases/1.2-beta-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/releases/1.2-beta-1.txt -------------------------------------------------------------------------------- /docs/releases/1.2-rc-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/releases/1.2-rc-1.txt -------------------------------------------------------------------------------- /docs/releases/1.2.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/releases/1.2.1.txt -------------------------------------------------------------------------------- /docs/releases/1.2.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/releases/1.2.2.txt -------------------------------------------------------------------------------- /docs/releases/1.2.3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/releases/1.2.3.txt -------------------------------------------------------------------------------- /docs/releases/1.2.4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/releases/1.2.4.txt -------------------------------------------------------------------------------- /docs/releases/1.2.5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/releases/1.2.5.txt -------------------------------------------------------------------------------- /docs/releases/1.2.6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/releases/1.2.6.txt -------------------------------------------------------------------------------- /docs/releases/1.2.7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/releases/1.2.7.txt -------------------------------------------------------------------------------- /docs/releases/1.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/releases/1.2.txt -------------------------------------------------------------------------------- /docs/releases/1.3-alpha-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/releases/1.3-alpha-1.txt -------------------------------------------------------------------------------- /docs/releases/1.3-beta-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/releases/1.3-beta-1.txt -------------------------------------------------------------------------------- /docs/releases/1.3.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/releases/1.3.1.txt -------------------------------------------------------------------------------- /docs/releases/1.3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/releases/1.3.txt -------------------------------------------------------------------------------- /docs/releases/1.4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/releases/1.4.txt -------------------------------------------------------------------------------- /docs/releases/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/releases/index.txt -------------------------------------------------------------------------------- /docs/topics/auth.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/topics/auth.txt -------------------------------------------------------------------------------- /docs/topics/cache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/topics/cache.txt -------------------------------------------------------------------------------- /docs/topics/db/aggregation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/topics/db/aggregation.txt -------------------------------------------------------------------------------- /docs/topics/db/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/topics/db/index.txt -------------------------------------------------------------------------------- /docs/topics/db/managers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/topics/db/managers.txt -------------------------------------------------------------------------------- /docs/topics/db/models.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/topics/db/models.txt -------------------------------------------------------------------------------- /docs/topics/db/multi-db.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/topics/db/multi-db.txt -------------------------------------------------------------------------------- /docs/topics/db/queries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/topics/db/queries.txt -------------------------------------------------------------------------------- /docs/topics/db/sql.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/topics/db/sql.txt -------------------------------------------------------------------------------- /docs/topics/db/tablespaces.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/topics/db/tablespaces.txt -------------------------------------------------------------------------------- /docs/topics/email.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/topics/email.txt -------------------------------------------------------------------------------- /docs/topics/files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/topics/files.txt -------------------------------------------------------------------------------- /docs/topics/forms/formsets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/topics/forms/formsets.txt -------------------------------------------------------------------------------- /docs/topics/forms/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/topics/forms/index.txt -------------------------------------------------------------------------------- /docs/topics/forms/media.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/topics/forms/media.txt -------------------------------------------------------------------------------- /docs/topics/generic-views.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/topics/generic-views.txt -------------------------------------------------------------------------------- /docs/topics/http/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/topics/http/index.txt -------------------------------------------------------------------------------- /docs/topics/http/sessions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/topics/http/sessions.txt -------------------------------------------------------------------------------- /docs/topics/http/shortcuts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/topics/http/shortcuts.txt -------------------------------------------------------------------------------- /docs/topics/http/urls.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/topics/http/urls.txt -------------------------------------------------------------------------------- /docs/topics/http/views.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/topics/http/views.txt -------------------------------------------------------------------------------- /docs/topics/i18n/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/topics/i18n/index.txt -------------------------------------------------------------------------------- /docs/topics/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/topics/index.txt -------------------------------------------------------------------------------- /docs/topics/install.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/topics/install.txt -------------------------------------------------------------------------------- /docs/topics/logging.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/topics/logging.txt -------------------------------------------------------------------------------- /docs/topics/pagination.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/topics/pagination.txt -------------------------------------------------------------------------------- /docs/topics/security.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/topics/security.txt -------------------------------------------------------------------------------- /docs/topics/serialization.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/topics/serialization.txt -------------------------------------------------------------------------------- /docs/topics/settings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/topics/settings.txt -------------------------------------------------------------------------------- /docs/topics/signals.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/topics/signals.txt -------------------------------------------------------------------------------- /docs/topics/signing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/topics/signing.txt -------------------------------------------------------------------------------- /docs/topics/templates.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/topics/templates.txt -------------------------------------------------------------------------------- /docs/topics/testing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/docs/topics/testing.txt -------------------------------------------------------------------------------- /extras/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/extras/README.TXT -------------------------------------------------------------------------------- /extras/django_bash_completion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/extras/django_bash_completion -------------------------------------------------------------------------------- /scripts/rpm-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/scripts/rpm-install.sh -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/setup.py -------------------------------------------------------------------------------- /tests/modeltests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/modeltests/aggregation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/modeltests/basic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/modeltests/choices/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/modeltests/custom_columns/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/modeltests/custom_managers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/modeltests/custom_methods/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/modeltests/custom_pk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/modeltests/defer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/modeltests/delete/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/modeltests/empty/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/modeltests/empty/no_models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/modeltests/expressions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/modeltests/field_defaults/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/modeltests/field_subclassing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/modeltests/files/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/modeltests/fixtures/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/modeltests/fixtures_model_package/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/modeltests/force_insert_update/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/modeltests/generic_relations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/modeltests/get_latest/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/modeltests/get_object_or_404/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/modeltests/get_or_create/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/modeltests/invalid_models/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/modeltests/invalid_models/invalid_models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/modeltests/invalid_models/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/modeltests/lookup/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/modeltests/m2m_and_m2o/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/modeltests/m2m_intermediary/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/modeltests/m2m_multiple/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/modeltests/m2m_recursive/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/modeltests/m2m_signals/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/modeltests/m2m_through/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/modeltests/m2o_recursive/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/modeltests/many_to_many/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/modeltests/many_to_one/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/modeltests/many_to_one_null/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/modeltests/model_forms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/modeltests/model_formsets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/modeltests/model_inheritance/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/modeltests/model_inheritance_same_model_name/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/modeltests/model_package/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/modeltests/mutually_referential/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/modeltests/one_to_one/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/modeltests/or_lookups/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/modeltests/order_with_respect_to/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/modeltests/ordering/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/modeltests/pagination/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/modeltests/prefetch_related/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/modeltests/properties/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/modeltests/proxy_model_inheritance/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/modeltests/proxy_model_inheritance/app1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/modeltests/proxy_model_inheritance/app2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/modeltests/proxy_model_inheritance/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/modeltests/proxy_models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/modeltests/raw_query/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/modeltests/reserved_names/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/modeltests/reverse_lookup/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/modeltests/save_delete_hooks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/modeltests/select_for_update/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /tests/modeltests/select_related/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/modeltests/serializers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/modeltests/signals/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/modeltests/str/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/modeltests/str/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/tests/modeltests/str/models.py -------------------------------------------------------------------------------- /tests/modeltests/str/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/tests/modeltests/str/tests.py -------------------------------------------------------------------------------- /tests/modeltests/tablespaces/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/modeltests/test_client/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/modeltests/transactions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/modeltests/unmanaged_models/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/modeltests/update/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/modeltests/user_commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/modeltests/user_commands/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/modeltests/user_commands/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/modeltests/validators/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/modeltests/validators/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/admin_changelist/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/admin_custom_urls/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /tests/regressiontests/admin_filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/admin_inlines/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/admin_ordering/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/admin_registration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/admin_scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/admin_scripts/app_with_import/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/admin_scripts/broken_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/admin_scripts/broken_app/models.py: -------------------------------------------------------------------------------- 1 | from django.db import modelz 2 | -------------------------------------------------------------------------------- /tests/regressiontests/admin_scripts/complex_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/admin_scripts/complex_app/admin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/admin_scripts/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/admin_scripts/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/admin_scripts/simple_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/admin_util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/admin_validation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/admin_views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/admin_widgets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/aggregation_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/app_loading/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/app_loading/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/app_loading/not_installed/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/app_loading/parent/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/app_loading/parent/app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/app_loading/parent/app1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/app_loading/parent/app_2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/app_loading/test_settings.py: -------------------------------------------------------------------------------- 1 | INSTALLED_APPS = ( 2 | 'parent.*', 3 | ) 4 | -------------------------------------------------------------------------------- /tests/regressiontests/backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/bash_completion/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/regressiontests/bash_completion/management/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/regressiontests/bash_completion/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/regressiontests/bash_completion/models.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/regressiontests/bug639/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/bug8245/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/builtin_server/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/builtin_server/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/bulk_create/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/cache/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/comment_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/conditional_processing/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding:utf-8 -*- 2 | -------------------------------------------------------------------------------- /tests/regressiontests/context_processors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/context_processors/models.py: -------------------------------------------------------------------------------- 1 | # Models file for tests to run. 2 | -------------------------------------------------------------------------------- /tests/regressiontests/csrf_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/csrf_tests/models.py: -------------------------------------------------------------------------------- 1 | # models.py file for tests to run. 2 | -------------------------------------------------------------------------------- /tests/regressiontests/custom_columns_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/custom_managers_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/datatypes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/dates/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/db_typecasts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/db_typecasts/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/decorators/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/decorators/models.py: -------------------------------------------------------------------------------- 1 | # A models.py so that tests run. 2 | 3 | -------------------------------------------------------------------------------- /tests/regressiontests/defaultfilters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/defaultfilters/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/defer_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/delete_regress/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/regressiontests/dispatch/__init__.py: -------------------------------------------------------------------------------- 1 | """Unit-tests for the dispatch project 2 | """ 3 | -------------------------------------------------------------------------------- /tests/regressiontests/dispatch/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/expressions_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/extra_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/file_storage/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/regressiontests/file_storage/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/file_uploads/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/fixtures_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/fixtures_regress/fixtures/empty.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /tests/regressiontests/forms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/generic_inline_admin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/generic_relations_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/generic_views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/generic_views/templates/generic_views/about.html: -------------------------------------------------------------------------------- 1 |

About

2 | {% now "U.u" %} 3 | -------------------------------------------------------------------------------- /tests/regressiontests/generic_views/templates/generic_views/artist_detail.html: -------------------------------------------------------------------------------- 1 | This is an {{ artist }}. -------------------------------------------------------------------------------- /tests/regressiontests/generic_views/templates/generic_views/author_confirm_delete.html: -------------------------------------------------------------------------------- 1 | Are you sure? -------------------------------------------------------------------------------- /tests/regressiontests/generic_views/templates/generic_views/author_detail.html: -------------------------------------------------------------------------------- 1 | This is an {{ author }}. -------------------------------------------------------------------------------- /tests/regressiontests/generic_views/templates/generic_views/book_archive_month.html: -------------------------------------------------------------------------------- 1 | Books in {{ month }}. -------------------------------------------------------------------------------- /tests/regressiontests/generic_views/templates/generic_views/book_archive_week.html: -------------------------------------------------------------------------------- 1 | Archive for {{ week }}. -------------------------------------------------------------------------------- /tests/regressiontests/generic_views/templates/generic_views/book_detail.html: -------------------------------------------------------------------------------- 1 | This is {{ book }}. -------------------------------------------------------------------------------- /tests/regressiontests/generic_views/templates/generic_views/confirm_delete.html: -------------------------------------------------------------------------------- 1 | Generic: Are you sure? -------------------------------------------------------------------------------- /tests/regressiontests/generic_views/templates/generic_views/detail.html: -------------------------------------------------------------------------------- 1 | Look, an {{ object }}. -------------------------------------------------------------------------------- /tests/regressiontests/generic_views/templates/registration/login.html: -------------------------------------------------------------------------------- 1 | An empty login template. -------------------------------------------------------------------------------- /tests/regressiontests/get_or_create_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/handlers/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/httpwrappers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/httpwrappers/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/i18n/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/i18n/contenttypes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/i18n/other/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/i18n/other/locale/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/i18n/other/locale/de/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/i18n/other/locale/de/formats.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/i18n/patterns/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/i18n/patterns/templates/404.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/i18n/patterns/templates/dummy.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/i18n/patterns/urls/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/i18n/resolution/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/i18n/resolution/models.py: -------------------------------------------------------------------------------- 1 | # -------------------------------------------------------------------------------- /tests/regressiontests/initial_sql_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/inline_formsets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/inspectdb/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/regressiontests/introspection/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/localflavor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/localflavor/ar/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/localflavor/at/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/localflavor/au/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/localflavor/be/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/localflavor/br/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/localflavor/ca/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/localflavor/ch/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/localflavor/cl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/localflavor/cn/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/localflavor/co/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/localflavor/cz/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/localflavor/de/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/localflavor/ec/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/localflavor/es/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/localflavor/fi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/localflavor/fr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/localflavor/gb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/localflavor/generic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/localflavor/hr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/localflavor/id/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/localflavor/ie/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/localflavor/il/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/localflavor/in_/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/localflavor/is_/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/localflavor/it/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/localflavor/jp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/localflavor/kw/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/localflavor/mk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/localflavor/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/localflavor/mx/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/localflavor/mx/mx.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/localflavor/nl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/localflavor/pl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/localflavor/pt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/localflavor/py/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/localflavor/ro/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/localflavor/ru/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/localflavor/se/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/localflavor/si/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/localflavor/sk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/localflavor/tr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/localflavor/us/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/localflavor/uy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/localflavor/za/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/logging_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/logging_tests/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/m2m_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/m2m_through_regress/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/regressiontests/mail/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/regressiontests/mail/models.py: -------------------------------------------------------------------------------- 1 | # This file intentionally left blank -------------------------------------------------------------------------------- /tests/regressiontests/managers_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/many_to_one_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/max_lengths/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/regressiontests/middleware/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/middleware/models.py: -------------------------------------------------------------------------------- 1 | # models.py file for tests to run. 2 | -------------------------------------------------------------------------------- /tests/regressiontests/middleware_exceptions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/middleware_exceptions/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/model_fields/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/model_forms_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/model_formsets_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/model_inheritance_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/model_inheritance_select_related/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/model_permalink/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/model_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/modeladmin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/multiple_database/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/null_fk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/null_fk_ordering/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/null_queries/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/one_to_one_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/pagination_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/pagination_regress/models.py: -------------------------------------------------------------------------------- 1 | # Models file for tests to run. 2 | -------------------------------------------------------------------------------- /tests/regressiontests/queries/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/queryset_pickle/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/requests/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Tests for Django's various Request objects. 3 | """ 4 | -------------------------------------------------------------------------------- /tests/regressiontests/reverse_single_related/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/select_related_onetoone/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/select_related_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/serializers_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/servers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/servers/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/settings_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/settings_tests/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/signals_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/signed_cookies_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/signed_cookies_tests/models.py: -------------------------------------------------------------------------------- 1 | # models.py file for tests to run. 2 | -------------------------------------------------------------------------------- /tests/regressiontests/signing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/signing/models.py: -------------------------------------------------------------------------------- 1 | # models.py file for tests to run. 2 | -------------------------------------------------------------------------------- /tests/regressiontests/sites_framework/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/special_headers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/special_headers/templates/special_headers/article_detail.html: -------------------------------------------------------------------------------- 1 | {{ object }} 2 | -------------------------------------------------------------------------------- /tests/regressiontests/staticfiles_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/staticfiles_tests/apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/staticfiles_tests/apps/no_label/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/staticfiles_tests/apps/no_label/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/staticfiles_tests/apps/no_label/static/file2.txt: -------------------------------------------------------------------------------- 1 | file2 in no_label_app 2 | -------------------------------------------------------------------------------- /tests/regressiontests/staticfiles_tests/apps/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/staticfiles_tests/apps/test/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/staticfiles_tests/apps/test/otherdir/odfile.txt: -------------------------------------------------------------------------------- 1 | File in otherdir. 2 | -------------------------------------------------------------------------------- /tests/regressiontests/staticfiles_tests/apps/test/static/test/.hidden: -------------------------------------------------------------------------------- 1 | This file should be ignored. 2 | -------------------------------------------------------------------------------- /tests/regressiontests/staticfiles_tests/apps/test/static/test/CVS: -------------------------------------------------------------------------------- 1 | This file should be ignored. 2 | -------------------------------------------------------------------------------- /tests/regressiontests/staticfiles_tests/apps/test/static/test/backup~: -------------------------------------------------------------------------------- 1 | This file should be ignored. 2 | -------------------------------------------------------------------------------- /tests/regressiontests/staticfiles_tests/apps/test/static/test/file.txt: -------------------------------------------------------------------------------- 1 | In app media directory. 2 | -------------------------------------------------------------------------------- /tests/regressiontests/staticfiles_tests/apps/test/static/test/file1.txt: -------------------------------------------------------------------------------- 1 | file1 in the app dir -------------------------------------------------------------------------------- /tests/regressiontests/staticfiles_tests/apps/test/static/test/test.ignoreme: -------------------------------------------------------------------------------- 1 | This file should be ignored. -------------------------------------------------------------------------------- /tests/regressiontests/staticfiles_tests/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/staticfiles_tests/project/documents/cached/other.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/staticfiles_tests/project/documents/cached/styles.css: -------------------------------------------------------------------------------- 1 | @import url("other.css"); -------------------------------------------------------------------------------- /tests/regressiontests/staticfiles_tests/project/documents/subdir/test.txt: -------------------------------------------------------------------------------- 1 | Can we find this file? 2 | -------------------------------------------------------------------------------- /tests/regressiontests/staticfiles_tests/project/documents/test.txt: -------------------------------------------------------------------------------- 1 | Can we find this file? 2 | -------------------------------------------------------------------------------- /tests/regressiontests/staticfiles_tests/project/documents/test/file.txt: -------------------------------------------------------------------------------- 1 | In STATICFILES_DIRS directory. 2 | 3 | -------------------------------------------------------------------------------- /tests/regressiontests/staticfiles_tests/project/prefixed/test.txt: -------------------------------------------------------------------------------- 1 | Prefix! -------------------------------------------------------------------------------- /tests/regressiontests/staticfiles_tests/project/site_media/media/media-file.txt: -------------------------------------------------------------------------------- 1 | Media file. 2 | -------------------------------------------------------------------------------- /tests/regressiontests/staticfiles_tests/project/site_media/static/testfile.txt: -------------------------------------------------------------------------------- 1 | Test! -------------------------------------------------------------------------------- /tests/regressiontests/staticfiles_tests/urls/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/string_lookup/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/syndication/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/syndication/templates/syndication/description.html: -------------------------------------------------------------------------------- 1 | Description in your templates: {{ obj }} -------------------------------------------------------------------------------- /tests/regressiontests/syndication/templates/syndication/title.html: -------------------------------------------------------------------------------- 1 | Title in your templates: {{ obj }} -------------------------------------------------------------------------------- /tests/regressiontests/templates/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/templates/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/templates/templates/broken_base.html: -------------------------------------------------------------------------------- 1 | {% include "missing.html" %} 2 | -------------------------------------------------------------------------------- /tests/regressiontests/templates/templates/first/test.html: -------------------------------------------------------------------------------- 1 | First template 2 | -------------------------------------------------------------------------------- /tests/regressiontests/templates/templates/inclusion.html: -------------------------------------------------------------------------------- 1 | {{ result }} 2 | -------------------------------------------------------------------------------- /tests/regressiontests/templates/templates/second/test.html: -------------------------------------------------------------------------------- 1 | Second template 2 | -------------------------------------------------------------------------------- /tests/regressiontests/templates/templates/test_context.html: -------------------------------------------------------------------------------- 1 | obj:{{ obj }} -------------------------------------------------------------------------------- /tests/regressiontests/templates/templates/test_extends_error.html: -------------------------------------------------------------------------------- 1 | {% extends "broken_base.html" %} 2 | -------------------------------------------------------------------------------- /tests/regressiontests/templates/templates/test_incl_tag_use_l10n.html: -------------------------------------------------------------------------------- 1 | {% load custom %}{% use_l10n %} 2 | -------------------------------------------------------------------------------- /tests/regressiontests/templates/templates/test_include_error.html: -------------------------------------------------------------------------------- 1 | {% include "missing.html" %} -------------------------------------------------------------------------------- /tests/regressiontests/templates/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/templates/templatetags/broken_tag.py: -------------------------------------------------------------------------------- 1 | from django import Xtemplate -------------------------------------------------------------------------------- /tests/regressiontests/test_client_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/test_client_regress/templates/request_context.html: -------------------------------------------------------------------------------- 1 | Path: {{ path }} 2 | -------------------------------------------------------------------------------- /tests/regressiontests/test_runner/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/test_runner/invalid_app/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/test_runner/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/test_runner/valid_app/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/test_runner/valid_app/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/test_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/text/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/text/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/transactions_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/urlpatterns_reverse/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/urlpatterns_reverse/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/utils/models.py: -------------------------------------------------------------------------------- 1 | # Test runner needs a models.py file. 2 | -------------------------------------------------------------------------------- /tests/regressiontests/utils/test_module/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/utils/test_module/good_module.py: -------------------------------------------------------------------------------- 1 | content = 'Good Module' -------------------------------------------------------------------------------- /tests/regressiontests/views/app0/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /tests/regressiontests/views/app1/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /tests/regressiontests/views/app2/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /tests/regressiontests/views/app3/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /tests/regressiontests/views/app4/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /tests/regressiontests/views/media/file.txt: -------------------------------------------------------------------------------- 1 | An example media file. -------------------------------------------------------------------------------- /tests/regressiontests/views/media/file.unknown: -------------------------------------------------------------------------------- 1 | An unknown file extension. 2 | -------------------------------------------------------------------------------- /tests/regressiontests/views/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/views/tests/generic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/wsgi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regressiontests/wsgi/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/tests/runtests.py -------------------------------------------------------------------------------- /tests/templates/404.html: -------------------------------------------------------------------------------- 1 | Django Internal Tests: 404 Error -------------------------------------------------------------------------------- /tests/templates/500.html: -------------------------------------------------------------------------------- 1 | Django Internal Tests: 500 Error -------------------------------------------------------------------------------- /tests/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/tests/templates/base.html -------------------------------------------------------------------------------- /tests/templates/custom_admin/add_form.html: -------------------------------------------------------------------------------- 1 | {% extends "admin/change_form.html" %} 2 | -------------------------------------------------------------------------------- /tests/templates/custom_admin/change_form.html: -------------------------------------------------------------------------------- 1 | {% extends "admin/change_form.html" %} 2 | -------------------------------------------------------------------------------- /tests/templates/custom_admin/delete_confirmation.html: -------------------------------------------------------------------------------- 1 | {% extends "admin/delete_confirmation.html" %} 2 | -------------------------------------------------------------------------------- /tests/templates/custom_admin/object_history.html: -------------------------------------------------------------------------------- 1 | {% extends "admin/object_history.html" %} 2 | -------------------------------------------------------------------------------- /tests/templates/extended.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/tests/templates/extended.html -------------------------------------------------------------------------------- /tests/templates/form_view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/tests/templates/form_view.html -------------------------------------------------------------------------------- /tests/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/tests/templates/login.html -------------------------------------------------------------------------------- /tests/templates/views/article_archive_day.html: -------------------------------------------------------------------------------- 1 | This template intentionally left blank 2 | -------------------------------------------------------------------------------- /tests/templates/views/article_archive_month.html: -------------------------------------------------------------------------------- 1 | This template intentionally left blank -------------------------------------------------------------------------------- /tests/templates/views/article_confirm_delete.html: -------------------------------------------------------------------------------- 1 | This template intentionally left blank -------------------------------------------------------------------------------- /tests/templates/views/article_detail.html: -------------------------------------------------------------------------------- 1 | Article detail template. 2 | -------------------------------------------------------------------------------- /tests/templates/views/article_list.html: -------------------------------------------------------------------------------- 1 | {{ object_list }} -------------------------------------------------------------------------------- /tests/templates/views/datearticle_archive_month.html: -------------------------------------------------------------------------------- 1 | This template intentionally left blank -------------------------------------------------------------------------------- /tests/templates/views/urlarticle_detail.html: -------------------------------------------------------------------------------- 1 | UrlArticle detail template. 2 | -------------------------------------------------------------------------------- /tests/test_sqlite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/tests/test_sqlite.py -------------------------------------------------------------------------------- /tests/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/django-old/HEAD/tests/urls.py --------------------------------------------------------------------------------