├── django ├── core │ ├── __init__.py │ ├── handlers │ │ └── __init__.py │ ├── servers │ │ └── __init__.py │ ├── cache │ │ └── backends │ │ │ └── __init__.py │ ├── checks │ │ ├── security │ │ │ └── __init__.py │ │ └── compatibility │ │ │ └── __init__.py │ ├── management │ │ └── commands │ │ │ └── __init__.py │ ├── mail │ │ └── backends │ │ │ └── __init__.py │ └── files │ │ └── __init__.py ├── contrib │ ├── __init__.py │ ├── gis │ │ ├── __init__.py │ │ ├── db │ │ │ ├── __init__.py │ │ │ └── backends │ │ │ │ ├── __init__.py │ │ │ │ ├── base │ │ │ │ └── __init__.py │ │ │ │ ├── mysql │ │ │ │ └── __init__.py │ │ │ │ ├── oracle │ │ │ │ └── __init__.py │ │ │ │ ├── postgis │ │ │ │ └── __init__.py │ │ │ │ └── spatialite │ │ │ │ └── __init__.py │ │ ├── gdal │ │ │ ├── raster │ │ │ │ └── __init__.py │ │ │ └── prototypes │ │ │ │ └── __init__.py │ │ ├── management │ │ │ ├── __init__.py │ │ │ └── commands │ │ │ │ └── __init__.py │ │ └── serializers │ │ │ └── __init__.py │ ├── sites │ │ ├── __init__.py │ │ └── migrations │ │ │ └── __init__.py │ ├── admin │ │ ├── views │ │ │ └── __init__.py │ │ ├── migrations │ │ │ └── __init__.py │ │ ├── templatetags │ │ │ └── __init__.py │ │ └── templates │ │ │ └── admin │ │ │ └── widgets │ │ │ ├── radio.html │ │ │ └── many_to_many_raw_id.html │ ├── admindocs │ │ └── __init__.py │ ├── flatpages │ │ ├── __init__.py │ │ ├── migrations │ │ │ └── __init__.py │ │ └── templatetags │ │ │ └── __init__.py │ ├── humanize │ │ ├── __init__.py │ │ └── templatetags │ │ │ └── __init__.py │ ├── postgres │ │ ├── __init__.py │ │ ├── aggregates │ │ │ └── __init__.py │ │ ├── jinja2 │ │ │ └── postgres │ │ │ │ └── widgets │ │ │ │ └── split_array.html │ │ └── templates │ │ │ └── postgres │ │ │ └── widgets │ │ │ └── split_array.html │ ├── redirects │ │ ├── __init__.py │ │ └── migrations │ │ │ └── __init__.py │ ├── sessions │ │ ├── __init__.py │ │ ├── backends │ │ │ └── __init__.py │ │ ├── management │ │ │ ├── __init__.py │ │ │ └── commands │ │ │ │ └── __init__.py │ │ └── migrations │ │ │ └── __init__.py │ ├── staticfiles │ │ ├── __init__.py │ │ └── management │ │ │ ├── __init__.py │ │ │ └── commands │ │ │ └── __init__.py │ ├── syndication │ │ └── __init__.py │ ├── auth │ │ ├── handlers │ │ │ └── __init__.py │ │ ├── migrations │ │ │ └── __init__.py │ │ └── management │ │ │ └── commands │ │ │ └── __init__.py │ └── contenttypes │ │ ├── __init__.py │ │ ├── migrations │ │ └── __init__.py │ │ └── management │ │ └── commands │ │ └── __init__.py ├── utils │ └── __init__.py ├── conf │ ├── locale │ │ ├── ar │ │ │ ├── __init__.py │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── az │ │ │ ├── __init__.py │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── bg │ │ │ ├── __init__.py │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── bn │ │ │ ├── __init__.py │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── bs │ │ │ ├── __init__.py │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── ca │ │ │ ├── __init__.py │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── cs │ │ │ ├── __init__.py │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── cy │ │ │ ├── __init__.py │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── da │ │ │ ├── __init__.py │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── de │ │ │ ├── __init__.py │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── el │ │ │ ├── __init__.py │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── en │ │ │ ├── __init__.py │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── eo │ │ │ ├── __init__.py │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── es │ │ │ ├── __init__.py │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── et │ │ │ ├── __init__.py │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── eu │ │ │ ├── __init__.py │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── fa │ │ │ ├── __init__.py │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── fi │ │ │ ├── __init__.py │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── fr │ │ │ ├── __init__.py │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── fy │ │ │ ├── __init__.py │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── ga │ │ │ ├── __init__.py │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── gd │ │ │ ├── __init__.py │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── gl │ │ │ ├── __init__.py │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── he │ │ │ ├── __init__.py │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── hi │ │ │ ├── __init__.py │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── hr │ │ │ ├── __init__.py │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── hu │ │ │ ├── __init__.py │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── id │ │ │ ├── __init__.py │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── ig │ │ │ ├── __init__.py │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── is │ │ │ ├── __init__.py │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── it │ │ │ ├── __init__.py │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── ja │ │ │ ├── __init__.py │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── ka │ │ │ ├── __init__.py │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── km │ │ │ ├── __init__.py │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── kn │ │ │ ├── __init__.py │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── ko │ │ │ ├── __init__.py │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── ky │ │ │ ├── __init__.py │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── lt │ │ │ ├── __init__.py │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── lv │ │ │ ├── __init__.py │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── mk │ │ │ ├── __init__.py │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── ml │ │ │ ├── __init__.py │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── mn │ │ │ ├── __init__.py │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── ms │ │ │ ├── __init__.py │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── nb │ │ │ ├── __init__.py │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── nl │ │ │ ├── __init__.py │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── nn │ │ │ ├── __init__.py │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── pl │ │ │ ├── __init__.py │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── pt │ │ │ ├── __init__.py │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── ro │ │ │ ├── __init__.py │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── ru │ │ │ ├── __init__.py │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── sk │ │ │ ├── __init__.py │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── sl │ │ │ ├── __init__.py │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── sq │ │ │ ├── __init__.py │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── sr │ │ │ ├── __init__.py │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── sv │ │ │ ├── __init__.py │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── ta │ │ │ ├── __init__.py │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── te │ │ │ ├── __init__.py │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── tg │ │ │ ├── __init__.py │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── th │ │ │ ├── __init__.py │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── tk │ │ │ ├── __init__.py │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── tr │ │ │ ├── __init__.py │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── ug │ │ │ ├── __init__.py │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── uk │ │ │ ├── __init__.py │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── uz │ │ │ └── __init__.py │ │ ├── vi │ │ │ └── __init__.py │ │ ├── ar_DZ │ │ │ └── __init__.py │ │ ├── ckb │ │ │ ├── __init__.py │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── de_CH │ │ │ └── __init__.py │ │ ├── en_AU │ │ │ └── __init__.py │ │ ├── en_CA │ │ │ └── __init__.py │ │ ├── en_GB │ │ │ └── __init__.py │ │ ├── en_IE │ │ │ └── __init__.py │ │ ├── es_AR │ │ │ └── __init__.py │ │ ├── es_CO │ │ │ └── __init__.py │ │ ├── es_MX │ │ │ └── __init__.py │ │ ├── es_NI │ │ │ └── __init__.py │ │ ├── es_PR │ │ │ └── __init__.py │ │ ├── fr_BE │ │ │ └── __init__.py │ │ ├── fr_CA │ │ │ └── __init__.py │ │ ├── fr_CH │ │ │ └── __init__.py │ │ ├── pt_BR │ │ │ └── __init__.py │ │ ├── sr_Latn │ │ │ └── __init__.py │ │ ├── zh_Hans │ │ │ └── __init__.py │ │ ├── zh_Hant │ │ │ └── __init__.py │ │ ├── af │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── ast │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── be │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── br │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── dsb │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── hsb │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── hy │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── ia │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── io │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── kab │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── kk │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── lb │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── mr │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── my │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── ne │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── os │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── pa │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── sw │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── tt │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── udm │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ └── ur │ │ │ └── LC_MESSAGES │ │ │ └── django.mo │ ├── app_template │ │ ├── __init__.py-tpl │ │ ├── migrations │ │ │ └── __init__.py-tpl │ │ ├── models.py-tpl │ │ ├── admin.py-tpl │ │ ├── tests.py-tpl │ │ └── views.py-tpl │ └── project_template │ │ └── project_name │ │ └── __init__.py-tpl ├── db │ └── backends │ │ ├── __init__.py │ │ ├── base │ │ └── __init__.py │ │ ├── dummy │ │ └── __init__.py │ │ ├── mysql │ │ └── __init__.py │ │ ├── oracle │ │ └── __init__.py │ │ ├── sqlite3 │ │ └── __init__.py │ │ ├── postgresql │ │ └── __init__.py │ │ └── signals.py ├── middleware │ └── __init__.py ├── templatetags │ └── __init__.py ├── template │ ├── backends │ │ └── __init__.py │ └── loaders │ │ └── __init__.py ├── views │ ├── decorators │ │ └── __init__.py │ └── __init__.py ├── forms │ ├── jinja2 │ │ └── django │ │ │ └── forms │ │ │ ├── widgets │ │ │ ├── date.html │ │ │ ├── email.html │ │ │ ├── file.html │ │ │ ├── text.html │ │ │ ├── time.html │ │ │ ├── url.html │ │ │ ├── checkbox.html │ │ │ ├── datetime.html │ │ │ ├── hidden.html │ │ │ ├── number.html │ │ │ ├── password.html │ │ │ ├── radio.html │ │ │ ├── radio_option.html │ │ │ ├── select_date.html │ │ │ ├── splitdatetime.html │ │ │ ├── checkbox_option.html │ │ │ ├── checkbox_select.html │ │ │ ├── multiple_hidden.html │ │ │ └── splithiddendatetime.html │ │ │ └── errors │ │ │ ├── dict │ │ │ └── default.html │ │ │ └── list │ │ │ ├── default.html │ │ │ └── text.txt │ └── templates │ │ └── django │ │ └── forms │ │ ├── errors │ │ ├── dict │ │ │ └── default.html │ │ └── list │ │ │ ├── default.html │ │ │ └── text.txt │ │ └── widgets │ │ ├── date.html │ │ ├── email.html │ │ ├── file.html │ │ ├── hidden.html │ │ ├── number.html │ │ ├── text.html │ │ ├── time.html │ │ ├── url.html │ │ ├── checkbox.html │ │ ├── datetime.html │ │ ├── password.html │ │ ├── radio.html │ │ ├── select_date.html │ │ ├── checkbox_option.html │ │ ├── multiple_hidden.html │ │ ├── radio_option.html │ │ ├── splitdatetime.html │ │ ├── checkbox_select.html │ │ └── splithiddendatetime.html └── apps │ └── __init__.py ├── tests ├── apps │ ├── __init__.py │ ├── no_config_app │ │ └── __init__.py │ ├── one_config_app │ │ └── __init__.py │ ├── two_configs_app │ │ └── __init__.py │ ├── query_performing_app │ │ └── __init__.py │ ├── two_default_configs_app │ │ └── __init__.py │ ├── namespace_package_other_base │ │ └── nsapp │ │ │ └── .keep │ └── two_configs_one_default_app │ │ └── __init__.py ├── asgi │ ├── __init__.py │ └── project │ │ └── static │ │ └── file.txt ├── async │ └── __init__.py ├── base │ └── __init__.py ├── basic │ └── __init__.py ├── cache │ └── __init__.py ├── dates │ └── __init__.py ├── defer │ └── __init__.py ├── empty │ ├── __init__.py │ └── no_models │ │ └── __init__.py ├── files │ ├── __init__.py │ ├── brokenimg.png │ ├── magic.png │ ├── test.png │ ├── test.webp │ └── test1.png ├── i18n │ ├── __init__.py │ ├── other │ │ ├── __init__.py │ │ └── locale │ │ │ ├── __init__.py │ │ │ ├── de │ │ │ ├── __init__.py │ │ │ └── formats.py │ │ │ └── fr │ │ │ ├── __init__.py │ │ │ └── formats.py │ ├── other2 │ │ ├── __init__.py │ │ └── locale │ │ │ ├── __init__.py │ │ │ └── de │ │ │ ├── formats.py │ │ │ └── __init__.py │ ├── patterns │ │ ├── __init__.py │ │ ├── templates │ │ │ ├── 404.html │ │ │ └── dummy.html │ │ └── urls │ │ │ └── __init__.py │ ├── resolution │ │ └── __init__.py │ ├── contenttypes │ │ └── __init__.py │ ├── loading_app │ │ └── __init__.py │ ├── commands │ │ ├── templates │ │ │ ├── empty.html │ │ │ ├── xxx_ignored.html │ │ │ └── subdir │ │ │ │ └── ignored.html │ │ ├── static │ │ │ ├── static_ignored.html │ │ │ └── javascript_ignored.js │ │ ├── media_root │ │ │ └── media_ignored.html │ │ ├── ignore_dir │ │ │ └── ignored.html │ │ ├── someapp │ │ │ └── static │ │ │ │ └── javascript.js │ │ └── not_utf8.sample │ ├── territorial_fallback │ │ └── __init__.py │ ├── project_dir │ │ ├── app_no_locale │ │ │ └── __init__.py │ │ ├── project_locale │ │ │ └── .gitkeep │ │ └── app_with_locale │ │ │ ├── __init__.py │ │ │ └── locale │ │ │ └── .gitkeep │ └── sampleproject │ │ └── sampleproject │ │ ├── __init__.py │ │ └── settings.py ├── mail │ ├── __init__.py │ └── attachments │ │ ├── file.txt │ │ ├── file_txt │ │ ├── file_txt.png │ │ ├── file.png │ │ ├── file_png │ │ └── file_png.txt ├── shell │ └── __init__.py ├── str │ └── __init__.py ├── wsgi │ ├── __init__.py │ └── wsgi.py ├── admin_docs │ ├── __init__.py │ └── evilfile.txt ├── backends │ ├── __init__.py │ ├── base │ │ ├── __init__.py │ │ └── app_unmigrated │ │ │ ├── __init__.py │ │ │ └── migrations │ │ │ └── __init__.py │ ├── mysql │ │ └── __init__.py │ ├── oracle │ │ └── __init__.py │ ├── sqlite │ │ └── __init__.py │ └── postgresql │ │ └── __init__.py ├── csrf_tests │ └── __init__.py ├── custom_pk │ └── __init__.py ├── datatypes │ └── __init__.py ├── datetimes │ └── __init__.py ├── db_utils │ └── __init__.py ├── dbshell │ ├── __init__.py │ └── fake_client.py ├── decorators │ └── __init__.py ├── delete │ └── __init__.py ├── dispatch │ └── __init__.py ├── empty_models │ ├── models.py │ └── __init__.py ├── fixtures │ ├── __init__.py │ └── fixtures │ │ ├── fixture4.json.zip │ │ ├── fixture5.json.bz2 │ │ ├── fixture5.json.gz │ │ ├── fixture5.json.lzma │ │ ├── fixture5.json.xz │ │ └── fixture5.json.zip ├── gis_tests │ ├── __init__.py │ ├── models.py │ ├── data │ │ ├── __init__.py │ │ ├── rasters │ │ │ ├── __init__.py │ │ │ └── raster.tif │ │ ├── texas.dbf │ │ ├── test_vrt │ │ │ └── test_vrt.csv │ │ ├── invalid │ │ │ └── emptypoints.dbf │ │ ├── cities │ │ │ ├── cities.dbf │ │ │ ├── cities.shp │ │ │ └── cities.shx │ │ ├── ch-city │ │ │ ├── ch-city.dbf │ │ │ ├── ch-city.shp │ │ │ └── ch-city.shx │ │ └── counties │ │ │ ├── counties.dbf │ │ │ ├── counties.shp │ │ │ └── counties.shx │ ├── geo3d │ │ ├── __init__.py │ │ └── views.py │ ├── distapp │ │ └── __init__.py │ ├── gdal_tests │ │ └── __init__.py │ ├── geoadmin │ │ └── __init__.py │ ├── geoapp │ │ └── __init__.py │ ├── geogapp │ │ └── __init__.py │ ├── geos_tests │ │ └── __init__.py │ ├── inspectapp │ │ └── __init__.py │ ├── layermap │ │ └── __init__.py │ ├── rasterapp │ │ ├── __init__.py │ │ └── migrations │ │ │ └── __init__.py │ ├── relatedapp │ │ └── __init__.py │ └── gis_migrations │ │ ├── __init__.py │ │ └── migrations │ │ └── __init__.py ├── handlers │ ├── __init__.py │ └── templates │ │ └── test_handler.html ├── indexes │ └── __init__.py ├── inspectdb │ └── __init__.py ├── lookup │ └── __init__.py ├── middleware │ └── __init__.py ├── migrations │ ├── __init__.py │ ├── faulty_migrations │ │ ├── file.py │ │ ├── __init__.py │ │ └── namespace │ │ │ └── foo │ │ │ └── __init__.py │ ├── related_models_app │ │ └── __init__.py │ ├── test_auto_now_add │ │ └── __init__.py │ ├── test_migrations │ │ └── __init__.py │ ├── migrations_test_apps │ │ ├── __init__.py │ │ ├── alter_fk │ │ │ ├── __init__.py │ │ │ ├── book_app │ │ │ │ ├── __init__.py │ │ │ │ └── migrations │ │ │ │ │ └── __init__.py │ │ │ └── author_app │ │ │ │ ├── __init__.py │ │ │ │ └── migrations │ │ │ │ └── __init__.py │ │ ├── normal │ │ │ └── __init__.py │ │ ├── lookuperror_a │ │ │ ├── __init__.py │ │ │ └── migrations │ │ │ │ └── __init__.py │ │ ├── lookuperror_b │ │ │ ├── __init__.py │ │ │ └── migrations │ │ │ │ └── __init__.py │ │ ├── lookuperror_c │ │ │ ├── __init__.py │ │ │ └── migrations │ │ │ │ └── __init__.py │ │ ├── migrated_app │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── migrations │ │ │ │ └── __init__.py │ │ ├── mutate_state_a │ │ │ ├── __init__.py │ │ │ └── migrations │ │ │ │ └── __init__.py │ │ ├── mutate_state_b │ │ │ ├── __init__.py │ │ │ └── migrations │ │ │ │ └── __init__.py │ │ ├── unmigrated_app │ │ │ └── __init__.py │ │ ├── with_package_model │ │ │ ├── __init__.py │ │ │ └── models │ │ │ │ └── __init__.py │ │ ├── without_init_file │ │ │ ├── __init__.py │ │ │ └── migrations │ │ │ │ └── .keep │ │ ├── migrated_unapplied_app │ │ │ ├── __init__.py │ │ │ └── migrations │ │ │ │ └── __init__.py │ │ ├── unmigrated_app_simple │ │ │ └── __init__.py │ │ ├── unmigrated_app_syncdb │ │ │ └── __init__.py │ │ ├── unspecified_app_with_conflict │ │ │ ├── models.py │ │ │ ├── __init__.py │ │ │ └── migrations │ │ │ │ └── __init__.py │ │ └── conflicting_app_with_dependencies │ │ │ ├── __init__.py │ │ │ └── migrations │ │ │ └── __init__.py │ ├── test_migrations_bad_pyc │ │ └── __init__.py │ ├── test_migrations_conflict │ │ └── __init__.py │ ├── test_migrations_empty │ │ └── __init__.py │ ├── test_migrations_first │ │ └── __init__.py │ ├── test_migrations_no_init │ │ └── .gitkeep │ ├── test_migrations_noop │ │ └── __init__.py │ ├── test_migrations_order │ │ └── __init__.py │ ├── test_migrations_plan │ │ └── __init__.py │ ├── test_migrations_private │ │ ├── .util.py │ │ ├── __init__.py │ │ ├── _util.py │ │ └── ~util.py │ ├── test_migrations_squashed │ │ └── __init__.py │ ├── test_migrations_unmigdep │ │ └── __init__.py │ ├── deprecated_field_migrations │ │ └── __init__.py │ ├── test_migrations_custom_user │ │ └── __init__.py │ ├── test_migrations_initial_false │ │ └── __init__.py │ ├── test_migrations_no_ancestor │ │ └── __init__.py │ ├── test_migrations_no_changes │ │ └── __init__.py │ ├── test_migrations_no_default │ │ └── __init__.py │ ├── test_migrations_no_operations │ │ └── __init__.py │ ├── test_migrations_non_atomic │ │ └── __init__.py │ ├── test_migrations_run_before │ │ └── __init__.py │ ├── test_migrations_atomic_operation │ │ └── __init__.py │ ├── test_migrations_clashing_prefix │ │ └── __init__.py │ ├── test_migrations_conflict_long_name │ │ └── __init__.py │ ├── test_migrations_fake_split_initial │ │ └── __init__.py │ ├── test_migrations_manual_porting │ │ └── __init__.py │ ├── test_migrations_squashed_complex │ │ └── __init__.py │ ├── test_migrations_squashed_erroneous │ │ └── __init__.py │ ├── test_migrations_squashed_extra │ │ └── __init__.py │ ├── test_add_many_to_many_field_initial │ │ └── __init__.py │ ├── test_migrations_squashed_no_replaces │ │ └── __init__.py │ ├── test_migrations_squashed_ref_squashed │ │ ├── __init__.py │ │ ├── app1 │ │ │ └── __init__.py │ │ └── app2 │ │ │ └── __init__.py │ ├── test_fake_initial_case_insensitive │ │ ├── initial │ │ │ └── __init__.py │ │ └── fake_initial │ │ │ └── __init__.py │ └── test_migrations_squashed_complex_multi_apps │ │ ├── __init__.py │ │ ├── app1 │ │ └── __init__.py │ │ └── app2 │ │ └── __init__.py ├── model_meta │ └── __init__.py ├── modeladmin │ └── __init__.py ├── no_models │ └── __init__.py ├── null_fk │ └── __init__.py ├── one_to_one │ └── __init__.py ├── or_lookups │ └── __init__.py ├── ordering │ └── __init__.py ├── pagination │ └── __init__.py ├── properties │ └── __init__.py ├── queries │ └── __init__.py ├── raw_query │ └── __init__.py ├── responses │ └── __init__.py ├── schema │ └── __init__.py ├── servers │ ├── __init__.py │ ├── another_app │ │ ├── __init__.py │ │ └── static │ │ │ └── another_app │ │ │ └── another_app_static_file.txt │ ├── media │ │ └── example_media_file.txt │ └── static │ │ └── example_static_file.txt ├── shortcuts │ ├── __init__.py │ ├── jinja2 │ │ └── shortcuts │ │ │ └── using.html │ └── templates │ │ └── shortcuts │ │ ├── using.html │ │ └── render_test.html ├── signals │ └── __init__.py ├── signing │ └── __init__.py ├── test_utils │ ├── __init__.py │ └── templates │ │ └── template_used │ │ ├── base.html │ │ ├── alternative.html │ │ ├── extends.html │ │ └── include.html ├── timezones │ └── __init__.py ├── update │ └── __init__.py ├── validators │ └── __init__.py ├── version │ └── __init__.py ├── view_tests │ ├── __init__.py │ ├── app0 │ │ └── __init__.py │ ├── app1 │ │ └── __init__.py │ ├── app2 │ │ └── __init__.py │ ├── app3 │ │ └── __init__.py │ ├── app4 │ │ └── __init__.py │ ├── app5 │ │ └── __init__.py │ ├── media │ │ ├── subdir │ │ │ ├── visible │ │ │ └── .hidden │ │ ├── %2F.txt │ │ ├── file.txt │ │ ├── file.unknown │ │ └── file.txt.gz │ ├── tests │ │ └── __init__.py │ ├── templatetags │ │ └── __init__.py │ └── templates │ │ ├── my_technical_500.txt │ │ ├── my_technical_500.html │ │ └── debug │ │ ├── template_error.html │ │ └── template_exception.html ├── admin_checks │ └── __init__.py ├── admin_filters │ └── __init__.py ├── admin_inlines │ └── __init__.py ├── admin_ordering │ └── __init__.py ├── admin_scripts │ ├── __init__.py │ ├── broken_app │ │ ├── __init__.py │ │ └── models.py │ ├── complex_app │ │ ├── __init__.py │ │ ├── admin │ │ │ └── __init__.py │ │ └── management │ │ │ ├── __init__.py │ │ │ └── commands │ │ │ └── __init__.py │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ └── __init__.py │ ├── simple_app │ │ ├── __init__.py │ │ ├── management │ │ │ ├── __init__.py │ │ │ └── commands │ │ │ │ └── __init__.py │ │ └── models.py │ ├── app_with_import │ │ └── __init__.py │ ├── app_raising_messages │ │ └── __init__.py │ ├── app_raising_warning │ │ └── __init__.py │ ├── app_waiting_migration │ │ ├── __init__.py │ │ └── migrations │ │ │ └── __init__.py │ ├── another_app_waiting_migration │ │ ├── __init__.py │ │ └── migrations │ │ │ └── __init__.py │ └── custom_templates │ │ ├── app_template │ │ ├── __init__.py │ │ └── api.py │ │ └── project_template │ │ ├── project_name │ │ └── __init__.py │ │ ├── .hidden │ │ └── render.py │ │ └── additional_dir │ │ ├── extra.py │ │ ├── Procfile │ │ └── requirements.txt ├── admin_utils │ └── __init__.py ├── admin_views │ └── __init__.py ├── admin_widgets │ └── __init__.py ├── aggregation │ └── __init__.py ├── annotations │ └── __init__.py ├── app_loading │ ├── __init__.py │ ├── not_installed │ │ └── __init__.py │ └── eggs │ │ ├── omelet.egg │ │ ├── brokenapp.egg │ │ ├── modelapp.egg │ │ └── nomodelapp.egg ├── bash_completion │ ├── __init__.py │ └── management │ │ ├── __init__.py │ │ └── commands │ │ └── __init__.py ├── builtin_server │ └── __init__.py ├── bulk_create │ └── __init__.py ├── check_framework │ ├── __init__.py │ ├── urls │ │ ├── __init__.py │ │ ├── path_compatibility │ │ │ └── __init__.py │ │ └── contains_tuple.py │ └── template_test_apps │ │ ├── __init__.py │ │ ├── same_tags_app_1 │ │ ├── __init__.py │ │ └── templatetags │ │ │ └── __init__.py │ │ ├── same_tags_app_2 │ │ ├── __init__.py │ │ └── templatetags │ │ │ └── __init__.py │ │ └── different_tags_app │ │ ├── __init__.py │ │ └── templatetags │ │ └── __init__.py ├── constraints │ └── __init__.py ├── custom_columns │ └── __init__.py ├── custom_lookups │ └── __init__.py ├── custom_managers │ └── __init__.py ├── custom_methods │ └── __init__.py ├── db_functions │ ├── __init__.py │ ├── math │ │ └── __init__.py │ ├── text │ │ └── __init__.py │ ├── window │ │ └── __init__.py │ ├── comparison │ │ └── __init__.py │ ├── datetime │ │ └── __init__.py │ └── migrations │ │ └── __init__.py ├── db_typecasts │ └── __init__.py ├── defer_regress │ └── __init__.py ├── delete_regress │ └── __init__.py ├── deprecation │ └── __init__.py ├── expressions │ └── __init__.py ├── extra_regress │ └── __init__.py ├── field_defaults │ └── __init__.py ├── file_storage │ └── __init__.py ├── file_uploads │ └── __init__.py ├── flatpages_tests │ ├── __init__.py │ └── templates │ │ └── registration │ │ └── login.html ├── foreign_object │ └── __init__.py ├── forms_tests │ ├── __init__.py │ ├── templatetags │ │ └── __init__.py │ ├── widget_tests │ │ └── __init__.py │ ├── tests │ │ └── filepath_test_files │ │ │ ├── .dot-file │ │ │ ├── fake-image.jpg │ │ │ ├── directory │ │ │ └── .keep │ │ │ └── real-text-file.txt │ ├── field_tests │ │ └── filepathfield_test_dir │ │ │ ├── a.py │ │ │ ├── ab.py │ │ │ ├── b.py │ │ │ ├── README │ │ │ ├── c │ │ │ ├── d.py │ │ │ ├── e.py │ │ │ ├── f │ │ │ │ ├── g.py │ │ │ │ └── __init__.py │ │ │ └── __init__.py │ │ │ ├── __init__.py │ │ │ ├── h │ │ │ └── __init__.py │ │ │ └── j │ │ │ └── __init__.py │ ├── jinja2 │ │ └── forms_tests │ │ │ └── custom_widget.html │ └── templates │ │ └── forms_tests │ │ ├── custom_widget.html │ │ ├── custom_field.html │ │ └── cyclic_context_boundfield_render.html ├── from_db_value │ └── __init__.py ├── generic_views │ ├── __init__.py │ ├── jinja2 │ │ └── generic_views │ │ │ └── using.html │ └── templates │ │ ├── generic_views │ │ ├── using.html │ │ ├── robots.txt │ │ ├── artist_form.html │ │ ├── author_form.html │ │ ├── detail.html │ │ ├── author_confirm_delete.html │ │ ├── book_detail.html │ │ ├── form.html │ │ ├── about.html │ │ ├── artist_detail.html │ │ ├── author_detail.html │ │ ├── book_archive_month.html │ │ ├── confirm_delete.html │ │ ├── book_archive_week.html │ │ ├── page_template.html │ │ ├── list.html │ │ ├── author_list.html │ │ ├── author_view.html │ │ ├── book_archive_day.html │ │ ├── book_list.html │ │ └── author_objects.html │ │ └── registration │ │ └── login.html ├── get_or_create │ └── __init__.py ├── httpwrappers │ ├── __init__.py │ └── abc.txt ├── humanize_tests │ └── __init__.py ├── inline_formsets │ └── __init__.py ├── introspection │ └── __init__.py ├── logging_tests │ └── __init__.py ├── m2m_and_m2o │ └── __init__.py ├── m2m_multiple │ └── __init__.py ├── m2m_recursive │ └── __init__.py ├── m2m_regress │ └── __init__.py ├── m2m_signals │ └── __init__.py ├── m2m_through │ └── __init__.py ├── m2o_recursive │ └── __init__.py ├── many_to_many │ └── __init__.py ├── many_to_one │ └── __init__.py ├── max_lengths │ └── __init__.py ├── messages_tests │ └── __init__.py ├── migrate_signals │ ├── __init__.py │ └── custom_migrations │ │ └── __init__.py ├── migrations2 │ ├── __init__.py │ ├── test_migrations_2 │ │ └── __init__.py │ ├── test_migrations_2_first │ │ └── __init__.py │ ├── test_migrations_2_no_deps │ │ └── __init__.py │ ├── test_migrations_2_squashed_with_replaces │ │ └── __init__.py │ └── models.py ├── model_enums │ └── __init__.py ├── model_fields │ ├── __init__.py │ ├── 4x8.png │ └── 8x4.png ├── model_forms │ ├── __init__.py │ ├── test.png │ └── test2.png ├── model_formsets │ └── __init__.py ├── model_indexes │ └── __init__.py ├── model_options │ ├── __init__.py │ └── models │ │ └── __init__.py ├── model_package │ └── __init__.py ├── model_regress │ └── __init__.py ├── model_utils │ └── __init__.py ├── null_queries │ └── __init__.py ├── proxy_models │ └── __init__.py ├── queryset_pickle │ └── __init__.py ├── redirects_tests │ └── __init__.py ├── requests_tests │ └── __init__.py ├── reserved_names │ └── __init__.py ├── resolve_url │ └── __init__.py ├── reverse_lookup │ └── __init__.py ├── select_related │ └── __init__.py ├── serializers │ └── __init__.py ├── sessions_tests │ └── __init__.py ├── settings_tests │ └── __init__.py ├── sitemaps_tests │ ├── __init__.py │ └── urls │ │ └── __init__.py ├── sites_framework │ ├── __init__.py │ └── migrations │ │ └── __init__.py ├── sites_tests │ └── __init__.py ├── string_lookup │ └── __init__.py ├── template_loader │ ├── __init__.py │ ├── templates │ │ └── template_loader │ │ │ ├── request.html │ │ │ ├── hello.html │ │ │ └── goodbye.html │ └── template_strings │ │ └── template_loader │ │ └── hello.html ├── template_tests │ ├── __init__.py │ ├── filter_tests │ │ └── __init__.py │ ├── syntax_tests │ │ ├── __init__.py │ │ └── i18n │ │ │ └── __init__.py │ ├── templatetags │ │ ├── __init__.py │ │ └── subpackage │ │ │ └── __init__.py │ ├── templates │ │ ├── index.html │ │ ├── inclusion.html │ │ ├── first │ │ │ └── test.html │ │ ├── priority │ │ │ └── foo.html │ │ ├── second │ │ │ └── test.html │ │ ├── template_tests │ │ │ └── using.html │ │ ├── test_context.html │ │ ├── include_tpl.html │ │ ├── broken_base.html │ │ ├── 27584_parent.html │ │ ├── test_include_error.html │ │ ├── inclusion_base.html │ │ ├── test_extends_error.html │ │ ├── ssi_include.html │ │ ├── test_incl_tag_use_l10n.html │ │ ├── test_context_stack.html │ │ ├── test_extends_block_error_parent.html │ │ ├── 27584_child.html │ │ ├── 27956_child.html │ │ └── response.html │ ├── jinja2 │ │ └── template_tests │ │ │ └── using.html │ ├── other_templates │ │ ├── priority │ │ │ └── foo.html │ │ └── test_dirs.html │ ├── broken_tag.py │ ├── recursive_templates │ │ ├── fs │ │ │ ├── self.html │ │ │ ├── extend-missing.html │ │ │ ├── three.html │ │ │ └── other-recursive.html │ │ └── fs3 │ │ │ └── recursive.html │ ├── relative_templates │ │ ├── dir1 │ │ │ └── dir2 │ │ │ │ ├── inc3.html │ │ │ │ ├── include_content.html │ │ │ │ ├── inc1.html │ │ │ │ └── inc2.html │ │ ├── three.html │ │ └── error_include.html │ └── eggs │ │ └── tagsegg.egg ├── test_client │ └── __init__.py ├── test_exceptions │ └── __init__.py ├── test_runner │ └── __init__.py ├── transactions │ └── __init__.py ├── urlpatterns │ └── __init__.py ├── user_commands │ ├── __init__.py │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ └── __init__.py │ └── eggs │ │ └── basic.egg ├── utils_tests │ ├── __init__.py │ ├── test_module │ │ ├── __main__.py │ │ ├── main_module.py │ │ ├── child_module │ │ │ ├── __init__.py │ │ │ └── grandchild_module.py │ │ ├── good_module.py │ │ ├── __init__.py │ │ └── bad_module.py │ ├── test_no_submodule.py │ ├── deconstructible_classes.py │ ├── archives │ │ ├── foobar.zip │ │ ├── foobar.tar.bz2 │ │ ├── foobar.tar.gz │ │ ├── foobar.tar.lzma │ │ └── foobar.tar.xz │ └── eggs │ │ └── test_egg.egg ├── xor_lookups │ └── __init__.py ├── admin_autodiscover │ └── __init__.py ├── admin_changelist │ └── __init__.py ├── admin_custom_urls │ └── __init__.py ├── admin_default_site │ └── __init__.py ├── admin_registration │ └── __init__.py ├── aggregation_regress │ └── __init__.py ├── contenttypes_tests │ ├── __init__.py │ └── operations_migrations │ │ └── __init__.py ├── context_processors │ ├── __init__.py │ └── models.py ├── distinct_on_fields │ └── __init__.py ├── expressions_case │ └── __init__.py ├── expressions_window │ └── __init__.py ├── field_deconstruction │ └── __init__.py ├── field_subclassing │ └── __init__.py ├── filtered_relation │ └── __init__.py ├── fixtures_regress │ ├── __init__.py │ └── fixtures │ │ ├── empty.json │ │ ├── bad_fix.ture1.unkn │ │ └── m2mtoself.json ├── force_insert_update │ └── __init__.py ├── generic_inline_admin │ └── __init__.py ├── generic_relations │ └── __init__.py ├── get_object_or_404 │ └── __init__.py ├── invalid_models_tests │ └── __init__.py ├── m2m_intermediary │ └── __init__.py ├── m2m_through_regress │ └── __init__.py ├── managers_regress │ └── __init__.py ├── many_to_one_null │ └── __init__.py ├── model_inheritance │ └── __init__.py ├── multiple_database │ └── __init__.py ├── mutually_referential │ └── __init__.py ├── nested_foreign_keys │ └── __init__.py ├── null_fk_ordering │ └── __init__.py ├── prefetch_related │ └── __init__.py ├── project_template │ └── __init__.py ├── save_delete_hooks │ └── __init__.py ├── select_for_update │ └── __init__.py ├── signed_cookies_tests │ └── __init__.py ├── staticfiles_tests │ ├── __init__.py │ ├── apps │ │ ├── __init__.py │ │ ├── test │ │ │ ├── __init__.py │ │ │ ├── static │ │ │ │ └── test │ │ │ │ │ ├── vendor │ │ │ │ │ └── module.js │ │ │ │ │ ├── %2F.txt │ │ │ │ │ ├── ⊗.txt │ │ │ │ │ ├── .hidden │ │ │ │ │ ├── file1.txt │ │ │ │ │ ├── CVS │ │ │ │ │ ├── file.txt │ │ │ │ │ └── test.ignoreme │ │ │ └── otherdir │ │ │ │ └── odfile.txt │ │ └── no_label │ │ │ ├── __init__.py │ │ │ └── static │ │ │ └── file2.txt │ ├── urls │ │ └── __init__.py │ └── project │ │ ├── documents │ │ ├── cached │ │ │ ├── other.css │ │ │ ├── source_map.js.map │ │ │ ├── source_map.css.map │ │ │ ├── css │ │ │ │ ├── fonts │ │ │ │ │ ├── font.eot │ │ │ │ │ └── font.svg │ │ │ │ └── window.css │ │ │ ├── import.css │ │ │ ├── test.js │ │ │ ├── styles.css │ │ │ ├── styles_insensitive.css │ │ │ ├── source_map_sensitive.js │ │ │ ├── url.css │ │ │ └── source_map.js │ │ ├── test.txt │ │ ├── test │ │ │ ├── backup~ │ │ │ ├── camelCase.txt │ │ │ └── file.txt │ │ ├── nested │ │ │ ├── css │ │ │ │ └── base.css │ │ │ └── js │ │ │ │ └── nested.js │ │ ├── subdir │ │ │ └── test.txt │ │ ├── absolute_root.css │ │ ├── styles_root.css │ │ └── absolute_root.js │ │ ├── prefixed │ │ └── test.txt │ │ ├── pathlib │ │ └── pathlib.txt │ │ ├── site_media │ │ ├── static │ │ │ └── testfile.txt │ │ └── media │ │ │ └── media-file.txt │ │ ├── loop │ │ ├── bar.css │ │ └── foo.css │ │ ├── faulty │ │ └── faulty.css │ │ └── static_url_slash │ │ └── ignored.css ├── swappable_models │ └── __init__.py ├── syndication_tests │ ├── __init__.py │ └── templates │ │ └── syndication │ │ ├── title.html │ │ ├── title_context.html │ │ ├── description_context.html │ │ └── description.html ├── template_backends │ ├── __init__.py │ ├── apps │ │ ├── __init__.py │ │ ├── good │ │ │ ├── __init__.py │ │ │ └── templatetags │ │ │ │ ├── __init__.py │ │ │ │ ├── empty.py │ │ │ │ ├── subpackage │ │ │ │ └── __init__.py │ │ │ │ ├── override.py │ │ │ │ └── good_tags.py │ │ └── importerror │ │ │ ├── __init__.py │ │ │ └── templatetags │ │ │ ├── __init__.py │ │ │ └── broken_tags.py │ ├── forbidden │ │ └── template_backends │ │ │ └── hello.html │ ├── jinja2 │ │ └── template_backends │ │ │ ├── csrf.html │ │ │ ├── hello.html │ │ │ ├── syntax_error.html │ │ │ └── syntax_error_include.html │ ├── templates │ │ └── template_backends │ │ │ ├── csrf.html │ │ │ ├── hello.html │ │ │ └── syntax_error.html │ └── template_strings │ │ └── template_backends │ │ ├── csrf.html │ │ └── hello.html ├── test_client_regress │ ├── __init__.py │ ├── templates │ │ └── request_context.html │ └── context_processors.py ├── test_runner_apps │ ├── __init__.py │ ├── sample │ │ ├── empty.py │ │ ├── __init__.py │ │ └── tests │ │ │ └── __init__.py │ ├── failures │ │ └── __init__.py │ ├── simple │ │ └── __init__.py │ ├── tagged │ │ └── __init__.py │ └── databases │ │ └── __init__.py ├── transaction_hooks │ └── __init__.py ├── unmanaged_models │ └── __init__.py ├── update_only_fields │ └── __init__.py ├── urlpatterns_reverse │ ├── __init__.py │ ├── no_urls.py │ ├── translations │ │ ├── __init__.py │ │ └── locale │ │ │ ├── __init__.py │ │ │ ├── de │ │ │ └── __init__.py │ │ │ └── fr │ │ │ └── __init__.py │ └── nonimported_module.py ├── absolute_url_overrides │ └── __init__.py ├── conditional_processing │ └── __init__.py ├── fixtures_model_package │ └── __init__.py ├── generic_relations_regress │ └── __init__.py ├── get_earliest_or_latest │ └── __init__.py ├── known_related_objects │ └── __init__.py ├── middleware_exceptions │ └── __init__.py ├── model_formsets_regress │ └── __init__.py ├── model_inheritance_regress │ └── __init__.py ├── order_with_respect_to │ └── __init__.py ├── postgres_tests │ ├── migrations │ │ └── __init__.py │ ├── array_default_migrations │ │ └── __init__.py │ └── array_index_migrations │ │ └── __init__.py ├── proxy_model_inheritance │ ├── __init__.py │ ├── app1 │ │ └── __init__.py │ └── app2 │ │ └── __init__.py ├── select_related_onetoone │ └── __init__.py ├── select_related_regress │ └── __init__.py ├── custom_migration_operations │ └── __init__.py ├── migration_test_data_persistence │ ├── __init__.py │ └── migrations │ │ └── __init__.py ├── requirements │ ├── mysql.txt │ └── oracle.txt ├── templates │ ├── views │ │ ├── article_list.html │ │ ├── article_detail.html │ │ ├── urlarticle_detail.html │ │ ├── article_archive_day.html │ │ ├── article_archive_month.html │ │ ├── article_confirm_delete.html │ │ ├── article_form.html │ │ ├── datearticle_archive_month.html │ │ └── urlarticle_form.html │ └── custom_admin │ │ ├── add_form.html │ │ ├── change_form.html │ │ ├── object_history.html │ │ ├── popup_response.html │ │ ├── delete_confirmation.html │ │ └── delete_selected_confirmation.html └── auth_tests │ ├── common-passwords-custom.txt │ ├── templates │ ├── registration │ │ ├── logged_out.html │ │ ├── login.html │ │ ├── password_change_form.html │ │ ├── password_reset_done.html │ │ ├── password_reset_form.html │ │ └── password_reset_complete.html │ └── context_processors │ │ ├── auth_attrs_no_access.html │ │ ├── auth_attrs_access.html │ │ └── auth_attrs_messages.html │ └── __init__.py ├── docs ├── _theme │ ├── djangodocs-epub │ │ └── static │ │ │ ├── docicons-note.png │ │ │ ├── docicons-warning.png │ │ │ ├── docicons-philosophy.png │ │ │ └── docicons-behindscenes.png │ └── djangodocs │ │ └── theme.conf ├── requirements.txt ├── intro │ └── _images │ │ ├── admin01.png │ │ ├── admin02.png │ │ ├── admin03t.png │ │ ├── admin04t.png │ │ ├── admin05t.png │ │ ├── admin06t.png │ │ ├── admin07.png │ │ ├── admin08t.png │ │ ├── admin09.png │ │ ├── admin10t.png │ │ ├── admin11t.png │ │ ├── admin12t.png │ │ ├── admin13t.png │ │ └── admin14t.png ├── howto │ └── _images │ │ ├── postmortem.png │ │ └── template-lines.png ├── topics │ └── http │ │ └── _images │ │ └── middleware.pdf └── internals │ └── _images │ └── triage_process.pdf ├── .github ├── FUNDING.yml ├── CODE_OF_CONDUCT.md └── SECURITY.md └── extras └── README.TXT /django/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/asgi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/async/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/basic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/cache/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dates/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/defer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/empty/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/files/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/i18n/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/mail/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/shell/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/str/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/wsgi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/admin_docs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/csrf_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/custom_pk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/datatypes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/datetimes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/db_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dbshell/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/decorators/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/delete/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dispatch/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/empty_models/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/gis_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/gis_tests/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/i18n/other/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/indexes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/inspectdb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/lookup/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/middleware/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/model_meta/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/modeladmin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/no_models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/null_fk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/one_to_one/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/or_lookups/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/ordering/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/pagination/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/properties/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/queries/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/raw_query/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/responses/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/schema/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/servers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/shortcuts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/signals/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/signing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/timezones/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/update/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/validators/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/version/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/view_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/ar/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/az/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/bg/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/bn/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/bs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/ca/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/cs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/cy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/da/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/de/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/el/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/en/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/eo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/es/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/et/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/eu/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/fa/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/fi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/fr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/fy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/ga/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/gd/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/gl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/he/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/hi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/hr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/hu/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/id/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/ig/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/is/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/it/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/ja/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/ka/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/km/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/kn/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/ko/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/ky/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/lt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/lv/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/mk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/ml/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/mn/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/ms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/nb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/nl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/nn/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/pl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/pt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/ro/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/ru/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/sk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/sl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/sq/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/sr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/sv/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/ta/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/te/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/tg/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/th/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/tk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/tr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/ug/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/uk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/uz/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/vi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/gis/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/gis/db/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/sites/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/core/handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/core/servers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/db/backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/middleware/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/admin_checks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/admin_docs/evilfile.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/admin_filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/admin_inlines/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/admin_ordering/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/admin_scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/admin_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/admin_views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/admin_widgets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/aggregation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/annotations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/app_loading/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/backends/base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/backends/mysql/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/backends/oracle/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/backends/sqlite/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bash_completion/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/builtin_server/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bulk_create/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/check_framework/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/constraints/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/custom_columns/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/custom_lookups/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/custom_managers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/custom_methods/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/db_functions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/db_typecasts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/defer_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/delete_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/deprecation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/empty/no_models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/empty_models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/expressions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/extra_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/field_defaults/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/file_storage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/file_uploads/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/files/brokenimg.png: -------------------------------------------------------------------------------- 1 | 123 2 | -------------------------------------------------------------------------------- /tests/flatpages_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/foreign_object/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/forms_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/from_db_value/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/generic_views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/get_or_create/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/gis_tests/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/gis_tests/geo3d/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/httpwrappers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/humanize_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/i18n/other2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/i18n/patterns/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/i18n/resolution/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/inline_formsets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/introspection/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/logging_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/m2m_and_m2o/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/m2m_multiple/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/m2m_recursive/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/m2m_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/m2m_signals/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/m2m_through/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/m2o_recursive/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/many_to_many/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/many_to_one/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/max_lengths/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/messages_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrate_signals/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/model_enums/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/model_fields/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/model_forms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/model_formsets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/model_indexes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/model_options/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/model_package/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/model_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/model_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/null_queries/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/proxy_models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/queryset_pickle/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/redirects_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/requests_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/reserved_names/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/resolve_url/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/reverse_lookup/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/select_related/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/serializers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/sessions_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/settings_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/sitemaps_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/sites_framework/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/sites_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/string_lookup/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/template_loader/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/template_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_client/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_exceptions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_runner/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/transactions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/urlpatterns/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/user_commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/utils_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/view_tests/app0/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/view_tests/app1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/view_tests/app2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/view_tests/app3/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/view_tests/app4/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/view_tests/app5/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/xor_lookups/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/ar_DZ/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/ckb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/de_CH/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/en_AU/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/en_CA/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/en_GB/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/en_IE/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/es_AR/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/es_CO/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/es_MX/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/es_NI/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/es_PR/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/fr_BE/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/fr_CA/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/fr_CH/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/pt_BR/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/sr_Latn/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/zh_Hans/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/zh_Hant/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/admin/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/admindocs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/flatpages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/humanize/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/postgres/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/redirects/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/sessions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/staticfiles/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/syndication/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/core/cache/backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/db/backends/base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/db/backends/dummy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/db/backends/mysql/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/db/backends/oracle/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/db/backends/sqlite3/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/template/backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/template/loaders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/views/decorators/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/admin_autodiscover/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/admin_changelist/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/admin_custom_urls/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/admin_default_site/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/admin_registration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/aggregation_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/apps/no_config_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/apps/one_config_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/apps/two_configs_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/backends/postgresql/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/check_framework/urls/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/contenttypes_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/context_processors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/db_functions/math/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/db_functions/text/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/db_functions/window/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/distinct_on_fields/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/expressions_case/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/expressions_window/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/field_deconstruction/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/field_subclassing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/filtered_relation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/force_insert_update/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/generic_inline_admin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/generic_relations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/get_object_or_404/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/gis_tests/distapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/gis_tests/gdal_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/gis_tests/geoadmin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/gis_tests/geoapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/gis_tests/geogapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/gis_tests/geos_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/gis_tests/inspectapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/gis_tests/layermap/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/gis_tests/rasterapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/gis_tests/relatedapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/i18n/contenttypes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/i18n/loading_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/i18n/other/locale/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/i18n/other/locale/de/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/i18n/other/locale/de/formats.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/i18n/other/locale/fr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/i18n/other2/locale/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/i18n/other2/locale/de/formats.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/i18n/patterns/templates/404.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/i18n/patterns/urls/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/invalid_models_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/m2m_intermediary/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/m2m_through_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/managers_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/many_to_one_null/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/model_inheritance/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/model_options/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/multiple_database/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/mutually_referential/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/nested_foreign_keys/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/null_fk_ordering/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/prefetch_related/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/project_template/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/save_delete_hooks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/select_for_update/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/servers/another_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/signed_cookies_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/sitemaps_tests/urls/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/staticfiles_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/swappable_models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/syndication_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/template_backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_client_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_runner_apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_runner_apps/sample/empty.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/transaction_hooks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unmanaged_models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/update_only_fields/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/urlpatterns_reverse/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/urlpatterns_reverse/no_urls.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/view_tests/media/subdir/visible: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/view_tests/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/app_template/__init__.py-tpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/admin/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/auth/handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/auth/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/contenttypes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/gis/db/backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/gis/gdal/raster/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/gis/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/gis/serializers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/sites/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/core/checks/security/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/core/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/db/backends/postgresql/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/absolute_url_overrides/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/admin_scripts/broken_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/admin_scripts/complex_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/admin_scripts/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/admin_scripts/simple_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/app_loading/not_installed/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/apps/query_performing_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/asgi/project/static/file.txt: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /tests/conditional_processing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/db_functions/comparison/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/db_functions/datetime/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/db_functions/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures_model_package/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/forms_tests/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/forms_tests/widget_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/generic_relations_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/get_earliest_or_latest/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/gis_tests/data/rasters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/gis_tests/gis_migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/i18n/commands/templates/empty.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/i18n/other2/locale/de/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/i18n/patterns/templates/dummy.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/i18n/territorial_fallback/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/known_related_objects/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/middleware_exceptions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/faulty_migrations/file.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/model_formsets_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/model_inheritance_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/order_with_respect_to/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/postgres_tests/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/proxy_model_inheritance/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/select_related_onetoone/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/select_related_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/staticfiles_tests/apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/staticfiles_tests/urls/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/template_backends/apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_runner_apps/failures/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_runner_apps/sample/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_runner_apps/simple/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_runner_apps/tagged/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/user_commands/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/utils_tests/test_module/__main__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/view_tests/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/admin/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/flatpages/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/gis/db/backends/base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/gis/db/backends/mysql/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/gis/gdal/prototypes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/humanize/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/redirects/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/sessions/backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/sessions/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/sessions/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/core/checks/compatibility/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/admin_scripts/app_with_import/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/apps/two_default_configs_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/backends/base/app_unmigrated/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bash_completion/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/custom_migration_operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures_regress/fixtures/empty.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /tests/gis_tests/rasterapp/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/httpwrappers/abc.txt: -------------------------------------------------------------------------------- 1 | random content 2 | -------------------------------------------------------------------------------- /tests/i18n/commands/static/static_ignored.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/i18n/project_dir/app_no_locale/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/i18n/project_dir/project_locale/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/mail/attachments/file.txt: -------------------------------------------------------------------------------- 1 | django/django -------------------------------------------------------------------------------- /tests/mail/attachments/file_txt: -------------------------------------------------------------------------------- 1 | django/django -------------------------------------------------------------------------------- /tests/mail/attachments/file_txt.png: -------------------------------------------------------------------------------- 1 | django/django -------------------------------------------------------------------------------- /tests/migrations/faulty_migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/related_models_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_auto_now_add/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations2/test_migrations_2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/proxy_model_inheritance/app1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/proxy_model_inheritance/app2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/sites_framework/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/staticfiles_tests/apps/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/template_backends/apps/good/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/template_tests/filter_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/template_tests/syntax_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/template_tests/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_runner_apps/databases/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_runner_apps/sample/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/utils_tests/test_module/main_module.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/view_tests/media/%2F.txt: -------------------------------------------------------------------------------- 1 | %2F content 2 | -------------------------------------------------------------------------------- /django/conf/app_template/migrations/__init__.py-tpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/auth/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/contenttypes/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/flatpages/templatetags/__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/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/staticfiles/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/admin_scripts/app_raising_messages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/admin_scripts/app_raising_warning/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/admin_scripts/app_waiting_migration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/admin_scripts/complex_app/admin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/admin_scripts/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/admin_scripts/simple_app/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/apps/namespace_package_other_base/nsapp/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/apps/two_configs_one_default_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bash_completion/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/check_framework/template_test_apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/forms_tests/tests/filepath_test_files/.dot-file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/gis_tests/gis_migrations/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/i18n/commands/media_root/media_ignored.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/i18n/project_dir/app_with_locale/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/i18n/sampleproject/sampleproject/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/i18n/sampleproject/sampleproject/settings.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrate_signals/custom_migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migration_test_data_persistence/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_migrations_bad_pyc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_migrations_conflict/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_migrations_empty/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_migrations_first/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_migrations_no_init/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_migrations_noop/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_migrations_order/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_migrations_plan/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_migrations_private/.util.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_migrations_private/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_migrations_private/_util.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_migrations_private/~util.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_migrations_squashed/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_migrations_unmigdep/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations2/test_migrations_2_first/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/requirements/mysql.txt: -------------------------------------------------------------------------------- 1 | mysqlclient >= 1.4.3 2 | -------------------------------------------------------------------------------- /tests/requirements/oracle.txt: -------------------------------------------------------------------------------- 1 | oracledb >= 1.3.2 2 | -------------------------------------------------------------------------------- /tests/staticfiles_tests/apps/no_label/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/template_backends/apps/importerror/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/template_tests/syntax_tests/i18n/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/template_tests/templates/index.html: -------------------------------------------------------------------------------- 1 | index 2 | -------------------------------------------------------------------------------- /tests/test_utils/templates/template_used/base.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/urlpatterns_reverse/translations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/user_commands/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/view_tests/media/file.txt: -------------------------------------------------------------------------------- 1 | An example media file. -------------------------------------------------------------------------------- /django/conf/project_template/project_name/__init__.py-tpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/sessions/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/staticfiles/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/admin_scripts/complex_app/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/backends/base/app_unmigrated/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/check_framework/urls/path_compatibility/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/contenttypes_tests/operations_migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/flatpages_tests/templates/registration/login.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/forms_tests/field_tests/filepathfield_test_dir/a.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/forms_tests/field_tests/filepathfield_test_dir/ab.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/forms_tests/field_tests/filepathfield_test_dir/b.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/forms_tests/tests/filepath_test_files/fake-image.jpg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/i18n/project_dir/app_with_locale/locale/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/deprecated_field_migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/alter_fk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/normal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_migrations_custom_user/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_migrations_initial_false/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_migrations_no_ancestor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_migrations_no_changes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_migrations_no_default/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_migrations_no_operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_migrations_non_atomic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_migrations_run_before/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations2/test_migrations_2_no_deps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/postgres_tests/array_default_migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/postgres_tests/array_index_migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/shortcuts/jinja2/shortcuts/using.html: -------------------------------------------------------------------------------- 1 | Jinja2 2 | -------------------------------------------------------------------------------- /tests/shortcuts/templates/shortcuts/using.html: -------------------------------------------------------------------------------- 1 | DTL 2 | -------------------------------------------------------------------------------- /tests/staticfiles_tests/project/documents/cached/other.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/staticfiles_tests/project/prefixed/test.txt: -------------------------------------------------------------------------------- 1 | Prefix! -------------------------------------------------------------------------------- /tests/template_backends/apps/good/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/template_backends/apps/good/templatetags/empty.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/template_tests/templatetags/subpackage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_utils/templates/template_used/alternative.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/urlpatterns_reverse/translations/locale/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/utils_tests/test_module/child_module/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/contenttypes/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/admin_scripts/another_app_waiting_migration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/admin_scripts/complex_app/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/admin_scripts/custom_templates/app_template/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/admin_scripts/simple_app/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/forms_tests/field_tests/filepathfield_test_dir/README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/forms_tests/field_tests/filepathfield_test_dir/c/d.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/forms_tests/field_tests/filepathfield_test_dir/c/e.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/forms_tests/field_tests/filepathfield_test_dir/c/f/g.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/forms_tests/tests/filepath_test_files/directory/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/forms_tests/tests/filepath_test_files/real-text-file.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/generic_views/jinja2/generic_views/using.html: -------------------------------------------------------------------------------- 1 | Jinja2 2 | -------------------------------------------------------------------------------- /tests/generic_views/templates/generic_views/using.html: -------------------------------------------------------------------------------- 1 | DTL 2 | -------------------------------------------------------------------------------- /tests/gis_tests/geo3d/views.py: -------------------------------------------------------------------------------- 1 | # Create your views here. 2 | -------------------------------------------------------------------------------- /tests/migration_test_data_persistence/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/faulty_migrations/namespace/foo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/lookuperror_a/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/lookuperror_b/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/lookuperror_c/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/migrated_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/migrated_app/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_migrations_atomic_operation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_migrations_clashing_prefix/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_migrations_conflict_long_name/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_migrations_fake_split_initial/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_migrations_manual_porting/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_migrations_squashed_complex/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_migrations_squashed_erroneous/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_migrations_squashed_extra/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/staticfiles_tests/apps/test/static/test/vendor/module.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/staticfiles_tests/project/pathlib/pathlib.txt: -------------------------------------------------------------------------------- 1 | pathlib 2 | -------------------------------------------------------------------------------- /tests/template_tests/templates/inclusion.html: -------------------------------------------------------------------------------- 1 | {{ result }} 2 | -------------------------------------------------------------------------------- /tests/templates/views/article_list.html: -------------------------------------------------------------------------------- 1 | {{ object_list }} 2 | -------------------------------------------------------------------------------- /tests/urlpatterns_reverse/translations/locale/de/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/urlpatterns_reverse/translations/locale/fr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/admin_scripts/app_waiting_migration/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/auth_tests/common-passwords-custom.txt: -------------------------------------------------------------------------------- 1 | from-my-custom-list 2 | -------------------------------------------------------------------------------- /tests/check_framework/template_test_apps/same_tags_app_1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/check_framework/template_test_apps/same_tags_app_2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dbshell/fake_client.py: -------------------------------------------------------------------------------- 1 | import sys 2 | 3 | sys.exit(1) 4 | -------------------------------------------------------------------------------- /tests/forms_tests/field_tests/filepathfield_test_dir/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/forms_tests/field_tests/filepathfield_test_dir/c/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/forms_tests/field_tests/filepathfield_test_dir/c/f/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/forms_tests/field_tests/filepathfield_test_dir/h/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/forms_tests/field_tests/filepathfield_test_dir/j/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/handlers/templates/test_handler.html: -------------------------------------------------------------------------------- 1 | Error handler content 2 | -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/alter_fk/book_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/mutate_state_a/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/mutate_state_b/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/unmigrated_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/with_package_model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/without_init_file/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_add_many_to_many_field_initial/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_migrations_squashed_no_replaces/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_migrations_squashed_ref_squashed/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/servers/media/example_media_file.txt: -------------------------------------------------------------------------------- 1 | example media file 2 | -------------------------------------------------------------------------------- /tests/servers/static/example_static_file.txt: -------------------------------------------------------------------------------- 1 | example static file 2 | -------------------------------------------------------------------------------- /tests/staticfiles_tests/project/documents/cached/source_map.js.map: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /tests/staticfiles_tests/project/site_media/static/testfile.txt: -------------------------------------------------------------------------------- 1 | Test! -------------------------------------------------------------------------------- /tests/template_backends/apps/importerror/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/template_tests/jinja2/template_tests/using.html: -------------------------------------------------------------------------------- 1 | Jinja2 2 | -------------------------------------------------------------------------------- /tests/template_tests/other_templates/priority/foo.html: -------------------------------------------------------------------------------- 1 | priority 2 | -------------------------------------------------------------------------------- /tests/template_tests/templates/first/test.html: -------------------------------------------------------------------------------- 1 | First template 2 | -------------------------------------------------------------------------------- /tests/template_tests/templates/priority/foo.html: -------------------------------------------------------------------------------- 1 | no priority 2 | -------------------------------------------------------------------------------- /tests/template_tests/templates/second/test.html: -------------------------------------------------------------------------------- 1 | Second template 2 | -------------------------------------------------------------------------------- /tests/template_tests/templates/template_tests/using.html: -------------------------------------------------------------------------------- 1 | DTL 2 | -------------------------------------------------------------------------------- /tests/template_tests/templates/test_context.html: -------------------------------------------------------------------------------- 1 | obj:{{ obj }} 2 | -------------------------------------------------------------------------------- /tests/view_tests/media/file.unknown: -------------------------------------------------------------------------------- 1 | An unknown file extension. 2 | -------------------------------------------------------------------------------- /tests/admin_scripts/another_app_waiting_migration/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/auth_tests/templates/registration/logged_out.html: -------------------------------------------------------------------------------- 1 | Logged out 2 | -------------------------------------------------------------------------------- /tests/auth_tests/templates/registration/login.html: -------------------------------------------------------------------------------- 1 | {{ form.as_ul }} 2 | -------------------------------------------------------------------------------- /tests/check_framework/template_test_apps/different_tags_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/generic_views/templates/generic_views/robots.txt: -------------------------------------------------------------------------------- 1 | User-Agent: * 2 | -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/alter_fk/author_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/migrated_app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/migrated_unapplied_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/unmigrated_app_simple/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/unmigrated_app_syncdb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/without_init_file/migrations/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_fake_initial_case_insensitive/initial/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_migrations_squashed_complex_multi_apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_migrations_squashed_ref_squashed/app1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_migrations_squashed_ref_squashed/app2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations2/test_migrations_2_squashed_with_replaces/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/staticfiles_tests/apps/test/static/test/%2F.txt: -------------------------------------------------------------------------------- 1 | %2F content 2 | -------------------------------------------------------------------------------- /tests/staticfiles_tests/apps/test/static/test/⊗.txt: -------------------------------------------------------------------------------- 1 | ⊗ in the app dir 2 | -------------------------------------------------------------------------------- /tests/staticfiles_tests/project/documents/cached/source_map.css.map: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /tests/staticfiles_tests/project/loop/bar.css: -------------------------------------------------------------------------------- 1 | @import url("foo.css") 2 | -------------------------------------------------------------------------------- /tests/staticfiles_tests/project/loop/foo.css: -------------------------------------------------------------------------------- 1 | @import url("bar.css") 2 | -------------------------------------------------------------------------------- /tests/template_backends/apps/good/templatetags/subpackage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/template_backends/forbidden/template_backends/hello.html: -------------------------------------------------------------------------------- 1 | Hu ho. 2 | -------------------------------------------------------------------------------- /tests/template_tests/templates/include_tpl.html: -------------------------------------------------------------------------------- 1 | {% include tmpl %} 2 | -------------------------------------------------------------------------------- /tests/templates/views/article_detail.html: -------------------------------------------------------------------------------- 1 | Article detail template. 2 | -------------------------------------------------------------------------------- /tests/utils_tests/test_module/good_module.py: -------------------------------------------------------------------------------- 1 | content = "Good Module" 2 | -------------------------------------------------------------------------------- /django/core/mail/backends/__init__.py: -------------------------------------------------------------------------------- 1 | # Mail backends shipped with Django. 2 | -------------------------------------------------------------------------------- /tests/admin_scripts/custom_templates/app_template/api.py: -------------------------------------------------------------------------------- 1 | # your API code 2 | -------------------------------------------------------------------------------- /tests/admin_scripts/custom_templates/project_template/project_name/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/auth_tests/templates/context_processors/auth_attrs_no_access.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/alter_fk/book_app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/lookuperror_a/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/lookuperror_b/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/lookuperror_c/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/mutate_state_a/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/mutate_state_b/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/unspecified_app_with_conflict/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/with_package_model/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_fake_initial_case_insensitive/fake_initial/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_migrations_squashed_complex_multi_apps/app1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_migrations_squashed_complex_multi_apps/app2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations2/models.py: -------------------------------------------------------------------------------- 1 | # Required for migration detection (#22645) 2 | -------------------------------------------------------------------------------- /tests/staticfiles_tests/apps/test/otherdir/odfile.txt: -------------------------------------------------------------------------------- 1 | File in otherdir. 2 | -------------------------------------------------------------------------------- /tests/staticfiles_tests/apps/test/static/test/.hidden: -------------------------------------------------------------------------------- 1 | should be ignored 2 | -------------------------------------------------------------------------------- /tests/staticfiles_tests/apps/test/static/test/file1.txt: -------------------------------------------------------------------------------- 1 | file1 in the app dir -------------------------------------------------------------------------------- /tests/staticfiles_tests/project/documents/test.txt: -------------------------------------------------------------------------------- 1 | Can we find this file? 2 | -------------------------------------------------------------------------------- /tests/staticfiles_tests/project/documents/test/backup~: -------------------------------------------------------------------------------- 1 | should be ignored 2 | -------------------------------------------------------------------------------- /tests/template_tests/broken_tag.py: -------------------------------------------------------------------------------- 1 | from django import Xtemplate # NOQA 2 | -------------------------------------------------------------------------------- /tests/template_tests/other_templates/test_dirs.html: -------------------------------------------------------------------------------- 1 | spam eggs{{ obj }} 2 | -------------------------------------------------------------------------------- /tests/templates/views/urlarticle_detail.html: -------------------------------------------------------------------------------- 1 | UrlArticle detail template. 2 | -------------------------------------------------------------------------------- /tests/test_client_regress/templates/request_context.html: -------------------------------------------------------------------------------- 1 | Path: {{ path }} 2 | -------------------------------------------------------------------------------- /tests/admin_scripts/broken_app/models.py: -------------------------------------------------------------------------------- 1 | from django.db import modelz # NOQA 2 | -------------------------------------------------------------------------------- /tests/auth_tests/templates/context_processors/auth_attrs_access.html: -------------------------------------------------------------------------------- 1 | {{ user }} 2 | -------------------------------------------------------------------------------- /tests/auth_tests/templates/registration/password_change_form.html: -------------------------------------------------------------------------------- 1 | {{ form }} 2 | -------------------------------------------------------------------------------- /tests/auth_tests/templates/registration/password_reset_done.html: -------------------------------------------------------------------------------- 1 | Email sent 2 | -------------------------------------------------------------------------------- /tests/auth_tests/templates/registration/password_reset_form.html: -------------------------------------------------------------------------------- 1 | {{ form }} 2 | -------------------------------------------------------------------------------- /tests/check_framework/template_test_apps/same_tags_app_1/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/check_framework/template_test_apps/same_tags_app_2/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/generic_views/templates/generic_views/artist_form.html: -------------------------------------------------------------------------------- 1 | A form: {{ form }} 2 | -------------------------------------------------------------------------------- /tests/generic_views/templates/generic_views/author_form.html: -------------------------------------------------------------------------------- 1 | A form: {{ form }} 2 | -------------------------------------------------------------------------------- /tests/generic_views/templates/generic_views/detail.html: -------------------------------------------------------------------------------- 1 | Look, an {{ object }}. 2 | -------------------------------------------------------------------------------- /tests/generic_views/templates/registration/login.html: -------------------------------------------------------------------------------- 1 | An empty login template. 2 | -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/alter_fk/author_app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/conflicting_app_with_dependencies/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/migrated_unapplied_app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/unspecified_app_with_conflict/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/staticfiles_tests/apps/no_label/static/file2.txt: -------------------------------------------------------------------------------- 1 | file2 in no_label_app 2 | -------------------------------------------------------------------------------- /tests/staticfiles_tests/apps/test/static/test/CVS: -------------------------------------------------------------------------------- 1 | This file should be ignored. 2 | -------------------------------------------------------------------------------- /tests/staticfiles_tests/apps/test/static/test/file.txt: -------------------------------------------------------------------------------- 1 | In static directory. 2 | -------------------------------------------------------------------------------- /tests/staticfiles_tests/project/faulty/faulty.css: -------------------------------------------------------------------------------- 1 | @import url("missing.css"); 2 | -------------------------------------------------------------------------------- /tests/staticfiles_tests/project/site_media/media/media-file.txt: -------------------------------------------------------------------------------- 1 | Media file. 2 | -------------------------------------------------------------------------------- /tests/template_backends/jinja2/template_backends/csrf.html: -------------------------------------------------------------------------------- 1 | {{ csrf_input }} 2 | -------------------------------------------------------------------------------- /tests/template_backends/jinja2/template_backends/hello.html: -------------------------------------------------------------------------------- 1 | Hello {{ name }}! 2 | -------------------------------------------------------------------------------- /tests/template_backends/jinja2/template_backends/syntax_error.html: -------------------------------------------------------------------------------- 1 | {% block %} 2 | -------------------------------------------------------------------------------- /tests/template_backends/templates/template_backends/csrf.html: -------------------------------------------------------------------------------- 1 | {% csrf_token %} 2 | -------------------------------------------------------------------------------- /tests/template_loader/templates/template_loader/request.html: -------------------------------------------------------------------------------- 1 | {{ request.path }} 2 | -------------------------------------------------------------------------------- /tests/template_tests/recursive_templates/fs/self.html: -------------------------------------------------------------------------------- 1 | {% extends "self.html" %} 2 | -------------------------------------------------------------------------------- /tests/template_tests/relative_templates/dir1/dir2/inc3.html: -------------------------------------------------------------------------------- 1 | {% include tmpl %} 2 | -------------------------------------------------------------------------------- /tests/template_tests/templates/broken_base.html: -------------------------------------------------------------------------------- 1 | {% include "missing.html" %} 2 | -------------------------------------------------------------------------------- /tests/view_tests/templates/my_technical_500.txt: -------------------------------------------------------------------------------- 1 | Oh dear, an error occurred! 2 | -------------------------------------------------------------------------------- /tests/auth_tests/__init__.py: -------------------------------------------------------------------------------- 1 | # The password for the fixture data users is 'password' 2 | -------------------------------------------------------------------------------- /tests/check_framework/template_test_apps/different_tags_app/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/generic_views/templates/generic_views/author_confirm_delete.html: -------------------------------------------------------------------------------- 1 | Are you sure? 2 | -------------------------------------------------------------------------------- /tests/generic_views/templates/generic_views/book_detail.html: -------------------------------------------------------------------------------- 1 | This is {{ book }}. 2 | -------------------------------------------------------------------------------- /tests/generic_views/templates/generic_views/form.html: -------------------------------------------------------------------------------- 1 | A generic form: {{ form }} 2 | -------------------------------------------------------------------------------- /tests/staticfiles_tests/project/documents/cached/css/fonts/font.eot: -------------------------------------------------------------------------------- 1 | not really an EOT ;) -------------------------------------------------------------------------------- /tests/staticfiles_tests/project/documents/cached/css/fonts/font.svg: -------------------------------------------------------------------------------- 1 | not really a SVG ;) -------------------------------------------------------------------------------- /tests/staticfiles_tests/project/documents/cached/import.css: -------------------------------------------------------------------------------- 1 | @import 'styles.css'; 2 | -------------------------------------------------------------------------------- /tests/staticfiles_tests/project/documents/cached/test.js: -------------------------------------------------------------------------------- 1 | myVar = url("import.css"); 2 | -------------------------------------------------------------------------------- /tests/staticfiles_tests/project/documents/nested/css/base.css: -------------------------------------------------------------------------------- 1 | html {height: 100%;} 2 | -------------------------------------------------------------------------------- /tests/staticfiles_tests/project/documents/nested/js/nested.js: -------------------------------------------------------------------------------- 1 | export default null; 2 | -------------------------------------------------------------------------------- /tests/staticfiles_tests/project/documents/subdir/test.txt: -------------------------------------------------------------------------------- 1 | Can we find this file? 2 | -------------------------------------------------------------------------------- /tests/template_backends/template_strings/template_backends/csrf.html: -------------------------------------------------------------------------------- 1 | $csrf_input 2 | -------------------------------------------------------------------------------- /tests/template_backends/template_strings/template_backends/hello.html: -------------------------------------------------------------------------------- 1 | Hello $name! 2 | -------------------------------------------------------------------------------- /tests/template_backends/templates/template_backends/hello.html: -------------------------------------------------------------------------------- 1 | Hello {{ name }}! 2 | -------------------------------------------------------------------------------- /tests/template_backends/templates/template_backends/syntax_error.html: -------------------------------------------------------------------------------- 1 | {% block %} 2 | -------------------------------------------------------------------------------- /tests/template_loader/templates/template_loader/hello.html: -------------------------------------------------------------------------------- 1 | Hello! (Django templates) 2 | -------------------------------------------------------------------------------- /tests/template_tests/relative_templates/dir1/dir2/include_content.html: -------------------------------------------------------------------------------- 1 | dir2 include 2 | -------------------------------------------------------------------------------- /tests/template_tests/templates/27584_parent.html: -------------------------------------------------------------------------------- 1 | {% include "27584_child.html" %} 2 | -------------------------------------------------------------------------------- /tests/template_tests/templates/test_include_error.html: -------------------------------------------------------------------------------- 1 | {% include "missing.html" %} 2 | -------------------------------------------------------------------------------- /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/view_tests/templates/my_technical_500.html: -------------------------------------------------------------------------------- 1 |

Oh no, an error occurred!

2 | -------------------------------------------------------------------------------- /docs/_theme/djangodocs-epub/static/docicons-note.png: -------------------------------------------------------------------------------- 1 | ../../djangodocs/static/docicons-note.png -------------------------------------------------------------------------------- /tests/files/magic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/tests/files/magic.png -------------------------------------------------------------------------------- /tests/files/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/tests/files/test.png -------------------------------------------------------------------------------- /tests/files/test.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/tests/files/test.webp -------------------------------------------------------------------------------- /tests/files/test1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/tests/files/test1.png -------------------------------------------------------------------------------- /tests/forms_tests/jinja2/forms_tests/custom_widget.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/generic_views/templates/generic_views/about.html: -------------------------------------------------------------------------------- 1 |

About

2 | {% now "U.u" %} 3 | -------------------------------------------------------------------------------- /tests/generic_views/templates/generic_views/artist_detail.html: -------------------------------------------------------------------------------- 1 | This is an {{ artist }}. 2 | -------------------------------------------------------------------------------- /tests/generic_views/templates/generic_views/author_detail.html: -------------------------------------------------------------------------------- 1 | This is an {{ author }}. 2 | -------------------------------------------------------------------------------- /tests/generic_views/templates/generic_views/book_archive_month.html: -------------------------------------------------------------------------------- 1 | Books in {{ month }}. 2 | -------------------------------------------------------------------------------- /tests/generic_views/templates/generic_views/confirm_delete.html: -------------------------------------------------------------------------------- 1 | Generic: Are you sure? 2 | -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/unspecified_app_with_conflict/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/staticfiles_tests/apps/test/static/test/test.ignoreme: -------------------------------------------------------------------------------- 1 | This file should be ignored. 2 | -------------------------------------------------------------------------------- /tests/staticfiles_tests/project/documents/cached/styles.css: -------------------------------------------------------------------------------- 1 | @import url("other.css"); 2 | -------------------------------------------------------------------------------- /tests/template_loader/templates/template_loader/goodbye.html: -------------------------------------------------------------------------------- 1 | Goodbye! (Django templates) 2 | -------------------------------------------------------------------------------- /tests/template_tests/relative_templates/three.html: -------------------------------------------------------------------------------- 1 | {% block content %}three{% endblock %} 2 | -------------------------------------------------------------------------------- /tests/template_tests/templates/inclusion_base.html: -------------------------------------------------------------------------------- 1 | {% block content %}base{% endblock %} 2 | -------------------------------------------------------------------------------- /tests/template_tests/templates/test_extends_error.html: -------------------------------------------------------------------------------- 1 | {% extends "broken_base.html" %} 2 | -------------------------------------------------------------------------------- /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 2 | -------------------------------------------------------------------------------- /tests/templates/views/article_confirm_delete.html: -------------------------------------------------------------------------------- 1 | This template intentionally left blank 2 | -------------------------------------------------------------------------------- /tests/templates/views/article_form.html: -------------------------------------------------------------------------------- 1 | Article form template. 2 | 3 | {{ form.errors }} 4 | -------------------------------------------------------------------------------- /tests/view_tests/templates/debug/template_error.html: -------------------------------------------------------------------------------- 1 | Template with error: 2 | {% cycle %} 3 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: https://www.djangoproject.com/fundraising/ 2 | github: [django] 3 | -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- 1 | pyenchant 2 | Sphinx>=4.5.0 3 | sphinxcontrib-spelling 4 | blacken-docs 5 | -------------------------------------------------------------------------------- /extras/README.TXT: -------------------------------------------------------------------------------- 1 | This directory contains extra stuff that can improve your Django experience. 2 | -------------------------------------------------------------------------------- /tests/forms_tests/templates/forms_tests/custom_widget.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/generic_views/templates/generic_views/book_archive_week.html: -------------------------------------------------------------------------------- 1 | Archive for {{ week }}. 2 | -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/conflicting_app_with_dependencies/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/staticfiles_tests/project/documents/test/camelCase.txt: -------------------------------------------------------------------------------- 1 | This file is named with camelCase. -------------------------------------------------------------------------------- /tests/staticfiles_tests/project/documents/test/file.txt: -------------------------------------------------------------------------------- 1 | In STATICFILES_DIRS directory. 2 | 3 | -------------------------------------------------------------------------------- /tests/syndication_tests/templates/syndication/title.html: -------------------------------------------------------------------------------- 1 | Title in your templates: {{ obj }} 2 | -------------------------------------------------------------------------------- /tests/syndication_tests/templates/syndication/title_context.html: -------------------------------------------------------------------------------- 1 | {{ obj }} (foo is {{ foo }}) 2 | -------------------------------------------------------------------------------- /tests/template_loader/template_strings/template_loader/hello.html: -------------------------------------------------------------------------------- 1 | Hello! (template strings) 2 | -------------------------------------------------------------------------------- /tests/template_tests/recursive_templates/fs/extend-missing.html: -------------------------------------------------------------------------------- 1 | {% extends "missing.html" %} 2 | -------------------------------------------------------------------------------- /tests/template_tests/recursive_templates/fs/three.html: -------------------------------------------------------------------------------- 1 | {% block content %}three{% endblock %} 2 | -------------------------------------------------------------------------------- /tests/template_tests/relative_templates/dir1/dir2/inc1.html: -------------------------------------------------------------------------------- 1 | {% include "./../../three.html" %} 2 | -------------------------------------------------------------------------------- /tests/template_tests/relative_templates/error_include.html: -------------------------------------------------------------------------------- 1 | {% include "./../three.html" %} 2 | -------------------------------------------------------------------------------- /tests/template_tests/templates/ssi_include.html: -------------------------------------------------------------------------------- 1 | This is for testing an ssi include. {{ test }} 2 | -------------------------------------------------------------------------------- /tests/template_tests/templates/test_incl_tag_use_l10n.html: -------------------------------------------------------------------------------- 1 | {% load custom %}{% use_l10n %} 2 | -------------------------------------------------------------------------------- /tests/templates/custom_admin/object_history.html: -------------------------------------------------------------------------------- 1 | {% extends "admin/object_history.html" %} 2 | -------------------------------------------------------------------------------- /tests/templates/custom_admin/popup_response.html: -------------------------------------------------------------------------------- 1 | {% extends "admin/popup_response.html" %} 2 | -------------------------------------------------------------------------------- /tests/templates/views/datearticle_archive_month.html: -------------------------------------------------------------------------------- 1 | This template intentionally left blank 2 | -------------------------------------------------------------------------------- /tests/test_utils/templates/template_used/extends.html: -------------------------------------------------------------------------------- 1 | {% extends "template_used/base.html" %} 2 | -------------------------------------------------------------------------------- /tests/test_utils/templates/template_used/include.html: -------------------------------------------------------------------------------- 1 | {% include "template_used/base.html" %} 2 | -------------------------------------------------------------------------------- /tests/utils_tests/test_module/child_module/grandchild_module.py: -------------------------------------------------------------------------------- 1 | content = "Grandchild Module" 2 | -------------------------------------------------------------------------------- /tests/utils_tests/test_no_submodule.py: -------------------------------------------------------------------------------- 1 | # Used to test for modules which don't have submodules. 2 | -------------------------------------------------------------------------------- /django/core/files/__init__.py: -------------------------------------------------------------------------------- 1 | from django.core.files.base import File 2 | 3 | __all__ = ["File"] 4 | -------------------------------------------------------------------------------- /django/forms/jinja2/django/forms/widgets/date.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /django/forms/jinja2/django/forms/widgets/email.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /django/forms/jinja2/django/forms/widgets/file.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /django/forms/jinja2/django/forms/widgets/text.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /django/forms/jinja2/django/forms/widgets/time.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /django/forms/jinja2/django/forms/widgets/url.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /django/views/__init__.py: -------------------------------------------------------------------------------- 1 | from django.views.generic.base import View 2 | 3 | __all__ = ["View"] 4 | -------------------------------------------------------------------------------- /docs/_theme/djangodocs-epub/static/docicons-warning.png: -------------------------------------------------------------------------------- 1 | ../../djangodocs/static/docicons-warning.png -------------------------------------------------------------------------------- /tests/auth_tests/templates/registration/password_reset_complete.html: -------------------------------------------------------------------------------- 1 | Password reset successfully 2 | -------------------------------------------------------------------------------- /tests/generic_views/templates/generic_views/page_template.html: -------------------------------------------------------------------------------- 1 | This is some content: {{ content }} 2 | -------------------------------------------------------------------------------- /tests/model_fields/4x8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/tests/model_fields/4x8.png -------------------------------------------------------------------------------- /tests/model_fields/8x4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/tests/model_fields/8x4.png -------------------------------------------------------------------------------- /tests/model_forms/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/tests/model_forms/test.png -------------------------------------------------------------------------------- /tests/model_forms/test2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/tests/model_forms/test2.png -------------------------------------------------------------------------------- /tests/staticfiles_tests/project/documents/absolute_root.css: -------------------------------------------------------------------------------- 1 | @import url("/static/styles_root.css"); 2 | -------------------------------------------------------------------------------- /tests/staticfiles_tests/project/documents/cached/styles_insensitive.css: -------------------------------------------------------------------------------- 1 | @IMporT uRL("other.css"); 2 | -------------------------------------------------------------------------------- /tests/syndication_tests/templates/syndication/description_context.html: -------------------------------------------------------------------------------- 1 | {{ obj }} (foo is {{ foo }}) 2 | -------------------------------------------------------------------------------- /tests/template_backends/apps/importerror/templatetags/broken_tags.py: -------------------------------------------------------------------------------- 1 | import DoesNotExist # noqa 2 | -------------------------------------------------------------------------------- /tests/template_tests/recursive_templates/fs/other-recursive.html: -------------------------------------------------------------------------------- 1 | {% extends "recursive.html" %} 2 | -------------------------------------------------------------------------------- /tests/template_tests/relative_templates/dir1/dir2/inc2.html: -------------------------------------------------------------------------------- 1 | {% include "./include_content.html" %} 2 | -------------------------------------------------------------------------------- /tests/templates/views/urlarticle_form.html: -------------------------------------------------------------------------------- 1 | UrlArticle form template. 2 | 3 | {{ form.errors }} 4 | -------------------------------------------------------------------------------- /tests/view_tests/templates/debug/template_exception.html: -------------------------------------------------------------------------------- 1 | {% load debugtags %} 2 | {% go_boom %} 3 | -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Django Code of Conduct 2 | 3 | See https://www.djangoproject.com/conduct/. 4 | -------------------------------------------------------------------------------- /django/conf/app_template/models.py-tpl: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /django/db/backends/signals.py: -------------------------------------------------------------------------------- 1 | from django.dispatch import Signal 2 | 3 | connection_created = Signal() 4 | -------------------------------------------------------------------------------- /django/forms/jinja2/django/forms/widgets/checkbox.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /django/forms/jinja2/django/forms/widgets/datetime.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /django/forms/jinja2/django/forms/widgets/hidden.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /django/forms/jinja2/django/forms/widgets/number.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /django/forms/jinja2/django/forms/widgets/password.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /django/forms/templates/django/forms/errors/dict/default.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/errors/dict/ul.html" %} -------------------------------------------------------------------------------- /django/forms/templates/django/forms/errors/list/default.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/errors/list/ul.html" %} -------------------------------------------------------------------------------- /django/forms/templates/django/forms/widgets/date.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /django/forms/templates/django/forms/widgets/email.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /django/forms/templates/django/forms/widgets/file.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /django/forms/templates/django/forms/widgets/hidden.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /django/forms/templates/django/forms/widgets/number.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /django/forms/templates/django/forms/widgets/text.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /django/forms/templates/django/forms/widgets/time.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /django/forms/templates/django/forms/widgets/url.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /docs/_theme/djangodocs-epub/static/docicons-philosophy.png: -------------------------------------------------------------------------------- 1 | ../../djangodocs/static/docicons-philosophy.png -------------------------------------------------------------------------------- /tests/check_framework/urls/contains_tuple.py: -------------------------------------------------------------------------------- 1 | urlpatterns = [ 2 | (r"^tuple/$", lambda x: x), 3 | ] 4 | -------------------------------------------------------------------------------- /tests/i18n/other/locale/fr/formats.py: -------------------------------------------------------------------------------- 1 | # A user-defined format 2 | CUSTOM_DAY_FORMAT = "d/m/Y CUSTOM" 3 | -------------------------------------------------------------------------------- /tests/servers/another_app/static/another_app/another_app_static_file.txt: -------------------------------------------------------------------------------- 1 | static file from another_app 2 | -------------------------------------------------------------------------------- /tests/shortcuts/templates/shortcuts/render_test.html: -------------------------------------------------------------------------------- 1 | {{ foo }}.{{ bar }}.{{ baz }}.{{ request.path }} 2 | -------------------------------------------------------------------------------- /tests/syndication_tests/templates/syndication/description.html: -------------------------------------------------------------------------------- 1 | Description in your templates: {{ obj }} 2 | -------------------------------------------------------------------------------- /tests/template_tests/templates/test_context_stack.html: -------------------------------------------------------------------------------- 1 | {% load custom %} 2 | {% context_stack_length %} 3 | -------------------------------------------------------------------------------- /tests/template_tests/templates/test_extends_block_error_parent.html: -------------------------------------------------------------------------------- 1 | {% block content %}{% endblock %} 2 | -------------------------------------------------------------------------------- /tests/templates/custom_admin/delete_confirmation.html: -------------------------------------------------------------------------------- 1 | {% extends "admin/delete_confirmation.html" %} 2 | -------------------------------------------------------------------------------- /tests/urlpatterns_reverse/nonimported_module.py: -------------------------------------------------------------------------------- 1 | def view(request): 2 | """Stub view""" 3 | pass 4 | -------------------------------------------------------------------------------- /tests/view_tests/media/subdir/.hidden: -------------------------------------------------------------------------------- 1 | The directory_name() view ignores files that start with a dot. 2 | -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- 1 | # Django Security Policies 2 | 3 | Please see https://www.djangoproject.com/security/. 4 | -------------------------------------------------------------------------------- /django/conf/app_template/admin.py-tpl: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /django/conf/app_template/tests.py-tpl: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /django/conf/app_template/views.py-tpl: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /django/forms/jinja2/django/forms/errors/dict/default.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/errors/dict/ul.html" %} 2 | -------------------------------------------------------------------------------- /django/forms/jinja2/django/forms/errors/list/default.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/errors/list/ul.html" %} 2 | -------------------------------------------------------------------------------- /django/forms/jinja2/django/forms/errors/list/text.txt: -------------------------------------------------------------------------------- 1 | {% for error in errors %}* {{ error }} 2 | {% endfor %} 3 | -------------------------------------------------------------------------------- /django/forms/jinja2/django/forms/widgets/radio.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/multiple_input.html" %} 2 | -------------------------------------------------------------------------------- /django/forms/templates/django/forms/widgets/checkbox.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /django/forms/templates/django/forms/widgets/datetime.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /django/forms/templates/django/forms/widgets/password.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /docs/_theme/djangodocs-epub/static/docicons-behindscenes.png: -------------------------------------------------------------------------------- 1 | ../../djangodocs/static/docicons-behindscenes.png -------------------------------------------------------------------------------- /docs/intro/_images/admin01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/docs/intro/_images/admin01.png -------------------------------------------------------------------------------- /docs/intro/_images/admin02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/docs/intro/_images/admin02.png -------------------------------------------------------------------------------- /docs/intro/_images/admin03t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/docs/intro/_images/admin03t.png -------------------------------------------------------------------------------- /docs/intro/_images/admin04t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/docs/intro/_images/admin04t.png -------------------------------------------------------------------------------- /docs/intro/_images/admin05t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/docs/intro/_images/admin05t.png -------------------------------------------------------------------------------- /docs/intro/_images/admin06t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/docs/intro/_images/admin06t.png -------------------------------------------------------------------------------- /docs/intro/_images/admin07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/docs/intro/_images/admin07.png -------------------------------------------------------------------------------- /docs/intro/_images/admin08t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/docs/intro/_images/admin08t.png -------------------------------------------------------------------------------- /docs/intro/_images/admin09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/docs/intro/_images/admin09.png -------------------------------------------------------------------------------- /docs/intro/_images/admin10t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/docs/intro/_images/admin10t.png -------------------------------------------------------------------------------- /docs/intro/_images/admin11t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/docs/intro/_images/admin11t.png -------------------------------------------------------------------------------- /docs/intro/_images/admin12t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/docs/intro/_images/admin12t.png -------------------------------------------------------------------------------- /docs/intro/_images/admin13t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/docs/intro/_images/admin13t.png -------------------------------------------------------------------------------- /docs/intro/_images/admin14t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/docs/intro/_images/admin14t.png -------------------------------------------------------------------------------- /tests/admin_scripts/simple_app/models.py: -------------------------------------------------------------------------------- 1 | from ..complex_app.models.bar import Bar 2 | 3 | __all__ = ["Bar"] 4 | -------------------------------------------------------------------------------- /tests/fixtures_regress/fixtures/bad_fix.ture1.unkn: -------------------------------------------------------------------------------- 1 | This data shouldn't load, as it's of an unknown file format. -------------------------------------------------------------------------------- /tests/gis_tests/data/texas.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/tests/gis_tests/data/texas.dbf -------------------------------------------------------------------------------- /tests/i18n/commands/ignore_dir/ignored.html: -------------------------------------------------------------------------------- 1 | {% load i18n %} 2 | {% translate "This should be ignored." %} 3 | -------------------------------------------------------------------------------- /tests/i18n/commands/someapp/static/javascript.js: -------------------------------------------------------------------------------- 1 | gettext('Static content inside app should be included.') 2 | -------------------------------------------------------------------------------- /tests/i18n/commands/static/javascript_ignored.js: -------------------------------------------------------------------------------- 1 | gettext('Content from STATIC_ROOT should not be included.') 2 | -------------------------------------------------------------------------------- /tests/mail/attachments/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/tests/mail/attachments/file.png -------------------------------------------------------------------------------- /tests/mail/attachments/file_png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/tests/mail/attachments/file_png -------------------------------------------------------------------------------- /tests/staticfiles_tests/project/documents/styles_root.css: -------------------------------------------------------------------------------- 1 | /* see cached/absolute.css and absolute_root.css */ 2 | -------------------------------------------------------------------------------- /tests/template_tests/recursive_templates/fs3/recursive.html: -------------------------------------------------------------------------------- 1 | {% block content %}fs3/recursive{% endblock %} 2 | -------------------------------------------------------------------------------- /tests/template_tests/templates/27584_child.html: -------------------------------------------------------------------------------- 1 | {% load tag_27584 %} 2 | 3 | {% badtag %}{% endbadtag %} 4 | -------------------------------------------------------------------------------- /django/contrib/admin/templates/admin/widgets/radio.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/multiple_input.html" %} 2 | -------------------------------------------------------------------------------- /django/forms/jinja2/django/forms/widgets/radio_option.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input_option.html" %} 2 | -------------------------------------------------------------------------------- /django/forms/jinja2/django/forms/widgets/select_date.html: -------------------------------------------------------------------------------- 1 | {% include 'django/forms/widgets/multiwidget.html' %} 2 | -------------------------------------------------------------------------------- /django/forms/jinja2/django/forms/widgets/splitdatetime.html: -------------------------------------------------------------------------------- 1 | {% include 'django/forms/widgets/multiwidget.html' %} 2 | -------------------------------------------------------------------------------- /django/forms/templates/django/forms/errors/list/text.txt: -------------------------------------------------------------------------------- 1 | {% for error in errors %}* {{ error }} 2 | {% endfor %} 3 | -------------------------------------------------------------------------------- /django/forms/templates/django/forms/widgets/radio.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/multiple_input.html" %} 2 | -------------------------------------------------------------------------------- /django/forms/templates/django/forms/widgets/select_date.html: -------------------------------------------------------------------------------- 1 | {% include 'django/forms/widgets/multiwidget.html' %} 2 | -------------------------------------------------------------------------------- /docs/howto/_images/postmortem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/docs/howto/_images/postmortem.png -------------------------------------------------------------------------------- /tests/app_loading/eggs/omelet.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/tests/app_loading/eggs/omelet.egg -------------------------------------------------------------------------------- /tests/auth_tests/templates/context_processors/auth_attrs_messages.html: -------------------------------------------------------------------------------- 1 | {% for m in messages %}{{ m }}{% endfor %} 2 | -------------------------------------------------------------------------------- /tests/gis_tests/data/test_vrt/test_vrt.csv: -------------------------------------------------------------------------------- 1 | POINT_X,POINT_Y,NUM 2 | 1.0,2.0,5 3 | 5.0,23.0,17 4 | 100.0,523.5,23 5 | -------------------------------------------------------------------------------- /tests/i18n/commands/templates/xxx_ignored.html: -------------------------------------------------------------------------------- 1 | {% load i18n %} 2 | {% translate "This should be ignored too." %} 3 | -------------------------------------------------------------------------------- /tests/staticfiles_tests/project/documents/absolute_root.js: -------------------------------------------------------------------------------- 1 | const rootConst = "root"; 2 | export default rootConst; 3 | -------------------------------------------------------------------------------- /tests/staticfiles_tests/project/documents/cached/source_map_sensitive.js: -------------------------------------------------------------------------------- 1 | //# sOuRcEMaPpInGURL=source_map.js.map 2 | -------------------------------------------------------------------------------- /tests/staticfiles_tests/project/static_url_slash/ignored.css: -------------------------------------------------------------------------------- 1 | body { 2 | background: url("//foobar"); 3 | } 4 | -------------------------------------------------------------------------------- /tests/user_commands/eggs/basic.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/tests/user_commands/eggs/basic.egg -------------------------------------------------------------------------------- /tests/utils_tests/deconstructible_classes.py: -------------------------------------------------------------------------------- 1 | from .test_deconstruct import DeconstructibleWithPathClass # NOQA 2 | -------------------------------------------------------------------------------- /tests/utils_tests/test_module/__init__.py: -------------------------------------------------------------------------------- 1 | class SiteMock: 2 | _registry = {} 3 | 4 | 5 | site = SiteMock() 6 | -------------------------------------------------------------------------------- /tests/view_tests/media/file.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/tests/view_tests/media/file.txt.gz -------------------------------------------------------------------------------- /django/contrib/postgres/aggregates/__init__.py: -------------------------------------------------------------------------------- 1 | from .general import * # NOQA 2 | from .statistics import * # NOQA 3 | -------------------------------------------------------------------------------- /django/contrib/postgres/jinja2/postgres/widgets/split_array.html: -------------------------------------------------------------------------------- 1 | {% include 'django/forms/widgets/multiwidget.html' %} 2 | -------------------------------------------------------------------------------- /django/forms/jinja2/django/forms/widgets/checkbox_option.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input_option.html" %} 2 | -------------------------------------------------------------------------------- /django/forms/jinja2/django/forms/widgets/checkbox_select.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/multiple_input.html" %} 2 | -------------------------------------------------------------------------------- /django/forms/jinja2/django/forms/widgets/multiple_hidden.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/multiwidget.html" %} 2 | -------------------------------------------------------------------------------- /django/forms/jinja2/django/forms/widgets/splithiddendatetime.html: -------------------------------------------------------------------------------- 1 | {% include 'django/forms/widgets/multiwidget.html' %} 2 | -------------------------------------------------------------------------------- /django/forms/templates/django/forms/widgets/checkbox_option.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input_option.html" %} 2 | -------------------------------------------------------------------------------- /django/forms/templates/django/forms/widgets/multiple_hidden.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/multiwidget.html" %} 2 | -------------------------------------------------------------------------------- /django/forms/templates/django/forms/widgets/radio_option.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input_option.html" %} 2 | -------------------------------------------------------------------------------- /django/forms/templates/django/forms/widgets/splitdatetime.html: -------------------------------------------------------------------------------- 1 | {% include 'django/forms/widgets/multiwidget.html' %} 2 | -------------------------------------------------------------------------------- /docs/_theme/djangodocs/theme.conf: -------------------------------------------------------------------------------- 1 | [theme] 2 | inherit = basic 3 | stylesheet = default.css 4 | pygments_style = trac 5 | -------------------------------------------------------------------------------- /docs/howto/_images/template-lines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/docs/howto/_images/template-lines.png -------------------------------------------------------------------------------- /tests/admin_scripts/custom_templates/project_template/.hidden/render.py: -------------------------------------------------------------------------------- 1 | # The {{ project_name }} should be rendered. 2 | -------------------------------------------------------------------------------- /tests/admin_scripts/custom_templates/project_template/additional_dir/extra.py: -------------------------------------------------------------------------------- 1 | # this file uses the {{ extra }} variable 2 | -------------------------------------------------------------------------------- /tests/app_loading/eggs/brokenapp.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/tests/app_loading/eggs/brokenapp.egg -------------------------------------------------------------------------------- /tests/app_loading/eggs/modelapp.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/tests/app_loading/eggs/modelapp.egg -------------------------------------------------------------------------------- /tests/app_loading/eggs/nomodelapp.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/tests/app_loading/eggs/nomodelapp.egg -------------------------------------------------------------------------------- /tests/forms_tests/templates/forms_tests/custom_field.html: -------------------------------------------------------------------------------- 1 | {{ field.label_tag }} 2 |

Custom Field

3 | {{ field }} 4 | -------------------------------------------------------------------------------- /tests/forms_tests/templates/forms_tests/cyclic_context_boundfield_render.html: -------------------------------------------------------------------------------- 1 | {% load tags %} 2 | {% count_render %} 3 | -------------------------------------------------------------------------------- /tests/generic_views/templates/generic_views/list.html: -------------------------------------------------------------------------------- 1 | {% for item in object_list %} 2 | {{ item }} 3 | {% endfor %} 4 | -------------------------------------------------------------------------------- /tests/gis_tests/data/invalid/emptypoints.dbf: -------------------------------------------------------------------------------- 1 | _A WFIDN 0 -------------------------------------------------------------------------------- /tests/i18n/commands/not_utf8.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/tests/i18n/commands/not_utf8.sample -------------------------------------------------------------------------------- /tests/mail/attachments/file_png.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/tests/mail/attachments/file_png.txt -------------------------------------------------------------------------------- /tests/staticfiles_tests/project/documents/cached/url.css: -------------------------------------------------------------------------------- 1 | @import url("https://www.djangoproject.com/m/css/base.css"); 2 | -------------------------------------------------------------------------------- /tests/template_tests/eggs/tagsegg.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/tests/template_tests/eggs/tagsegg.egg -------------------------------------------------------------------------------- /tests/templates/custom_admin/delete_selected_confirmation.html: -------------------------------------------------------------------------------- 1 | {% extends "admin/delete_selected_confirmation.html" %} 2 | -------------------------------------------------------------------------------- /tests/test_client_regress/context_processors.py: -------------------------------------------------------------------------------- 1 | def special(request): 2 | return {"path": request.special_path} 3 | -------------------------------------------------------------------------------- /tests/utils_tests/archives/foobar.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/tests/utils_tests/archives/foobar.zip -------------------------------------------------------------------------------- /tests/utils_tests/eggs/test_egg.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/tests/utils_tests/eggs/test_egg.egg -------------------------------------------------------------------------------- /django/contrib/admin/templates/admin/widgets/many_to_many_raw_id.html: -------------------------------------------------------------------------------- 1 | {% include 'admin/widgets/foreign_key_raw_id.html' %} 2 | -------------------------------------------------------------------------------- /django/contrib/postgres/templates/postgres/widgets/split_array.html: -------------------------------------------------------------------------------- 1 | {% include 'django/forms/widgets/multiwidget.html' %} 2 | -------------------------------------------------------------------------------- /django/forms/templates/django/forms/widgets/checkbox_select.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/multiple_input.html" %} 2 | -------------------------------------------------------------------------------- /django/forms/templates/django/forms/widgets/splithiddendatetime.html: -------------------------------------------------------------------------------- 1 | {% include 'django/forms/widgets/multiwidget.html' %} 2 | -------------------------------------------------------------------------------- /docs/topics/http/_images/middleware.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/docs/topics/http/_images/middleware.pdf -------------------------------------------------------------------------------- /tests/admin_scripts/custom_templates/project_template/additional_dir/Procfile: -------------------------------------------------------------------------------- 1 | # some file for {{ project_name }} test project -------------------------------------------------------------------------------- /tests/context_processors/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | 4 | class DebugObject(models.Model): 5 | pass 6 | -------------------------------------------------------------------------------- /tests/fixtures_regress/fixtures/m2mtoself.json: -------------------------------------------------------------------------------- 1 | [{"fields": {"parent": [1]}, "model": "fixtures_regress.m2mtoself", "pk": 1}] 2 | -------------------------------------------------------------------------------- /tests/generic_views/templates/generic_views/author_list.html: -------------------------------------------------------------------------------- 1 | {% for item in object_list %} 2 | {{ item }} 3 | {% endfor %} 4 | -------------------------------------------------------------------------------- /tests/generic_views/templates/generic_views/author_view.html: -------------------------------------------------------------------------------- 1 | This is an alternate template_name_suffix for an {{ author }}. 2 | -------------------------------------------------------------------------------- /tests/generic_views/templates/generic_views/book_archive_day.html: -------------------------------------------------------------------------------- 1 | Archive for {{ day }}. Previous day is {{ previous_day }} 2 | -------------------------------------------------------------------------------- /tests/generic_views/templates/generic_views/book_list.html: -------------------------------------------------------------------------------- 1 | {% for item in object_list %} 2 | {{ item }} 3 | {% endfor %} 4 | -------------------------------------------------------------------------------- /tests/gis_tests/data/cities/cities.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/tests/gis_tests/data/cities/cities.dbf -------------------------------------------------------------------------------- /tests/gis_tests/data/cities/cities.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/tests/gis_tests/data/cities/cities.shp -------------------------------------------------------------------------------- /tests/gis_tests/data/cities/cities.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/tests/gis_tests/data/cities/cities.shx -------------------------------------------------------------------------------- /tests/gis_tests/data/rasters/raster.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/tests/gis_tests/data/rasters/raster.tif -------------------------------------------------------------------------------- /tests/i18n/commands/templates/subdir/ignored.html: -------------------------------------------------------------------------------- 1 | {% load i18n %} 2 | {% translate "This subdir should be ignored too." %} 3 | -------------------------------------------------------------------------------- /tests/template_backends/apps/good/templatetags/override.py: -------------------------------------------------------------------------------- 1 | from django.template import Library 2 | 3 | register = Library() 4 | -------------------------------------------------------------------------------- /tests/template_tests/templates/27956_child.html: -------------------------------------------------------------------------------- 1 | {% extends "27956_parent.html" %} 2 | 3 | {% block content %}{% endblock %} 4 | -------------------------------------------------------------------------------- /tests/template_tests/templates/response.html: -------------------------------------------------------------------------------- 1 | This is where you can find the snark: {% url "snark" %} 2 | {% now "U.u" %} 3 | -------------------------------------------------------------------------------- /tests/wsgi/wsgi.py: -------------------------------------------------------------------------------- 1 | # This is just to test finding, it doesn't have to be a real WSGI callable 2 | application = object() 3 | -------------------------------------------------------------------------------- /django/apps/__init__.py: -------------------------------------------------------------------------------- 1 | from .config import AppConfig 2 | from .registry import apps 3 | 4 | __all__ = ["AppConfig", "apps"] 5 | -------------------------------------------------------------------------------- /docs/internals/_images/triage_process.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/docs/internals/_images/triage_process.pdf -------------------------------------------------------------------------------- /tests/admin_scripts/custom_templates/project_template/additional_dir/requirements.txt: -------------------------------------------------------------------------------- 1 | # some file for {{ project_name }} test project -------------------------------------------------------------------------------- /tests/fixtures/fixtures/fixture4.json.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/tests/fixtures/fixtures/fixture4.json.zip -------------------------------------------------------------------------------- /tests/fixtures/fixtures/fixture5.json.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/tests/fixtures/fixtures/fixture5.json.bz2 -------------------------------------------------------------------------------- /tests/fixtures/fixtures/fixture5.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/tests/fixtures/fixtures/fixture5.json.gz -------------------------------------------------------------------------------- /tests/fixtures/fixtures/fixture5.json.lzma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/tests/fixtures/fixtures/fixture5.json.lzma -------------------------------------------------------------------------------- /tests/fixtures/fixtures/fixture5.json.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/tests/fixtures/fixtures/fixture5.json.xz -------------------------------------------------------------------------------- /tests/fixtures/fixtures/fixture5.json.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/tests/fixtures/fixtures/fixture5.json.zip -------------------------------------------------------------------------------- /tests/generic_views/templates/generic_views/author_objects.html: -------------------------------------------------------------------------------- 1 | {% for item in object_list %} 2 | {{ item }} 3 | {% endfor %} 4 | -------------------------------------------------------------------------------- /tests/gis_tests/data/ch-city/ch-city.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/tests/gis_tests/data/ch-city/ch-city.dbf -------------------------------------------------------------------------------- /tests/gis_tests/data/ch-city/ch-city.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/tests/gis_tests/data/ch-city/ch-city.shp -------------------------------------------------------------------------------- /tests/gis_tests/data/ch-city/ch-city.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/tests/gis_tests/data/ch-city/ch-city.shx -------------------------------------------------------------------------------- /tests/gis_tests/data/counties/counties.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/tests/gis_tests/data/counties/counties.dbf -------------------------------------------------------------------------------- /tests/gis_tests/data/counties/counties.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/tests/gis_tests/data/counties/counties.shp -------------------------------------------------------------------------------- /tests/gis_tests/data/counties/counties.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/tests/gis_tests/data/counties/counties.shx -------------------------------------------------------------------------------- /tests/staticfiles_tests/project/documents/cached/css/window.css: -------------------------------------------------------------------------------- 1 | body { 2 | background: #d3d6d8 url("img/window.png"); 3 | } 4 | -------------------------------------------------------------------------------- /tests/staticfiles_tests/project/documents/cached/source_map.js: -------------------------------------------------------------------------------- 1 | //# sourceMappingURL=source_map.js.map 2 | let a_variable = 1; 3 | -------------------------------------------------------------------------------- /tests/template_backends/apps/good/templatetags/good_tags.py: -------------------------------------------------------------------------------- 1 | from django.template import Library 2 | 3 | register = Library() 4 | -------------------------------------------------------------------------------- /tests/template_backends/jinja2/template_backends/syntax_error_include.html: -------------------------------------------------------------------------------- 1 | {% include "template_backends/syntax_error.html" %} 2 | -------------------------------------------------------------------------------- /tests/utils_tests/archives/foobar.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/tests/utils_tests/archives/foobar.tar.bz2 -------------------------------------------------------------------------------- /tests/utils_tests/archives/foobar.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/tests/utils_tests/archives/foobar.tar.gz -------------------------------------------------------------------------------- /tests/utils_tests/archives/foobar.tar.lzma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/tests/utils_tests/archives/foobar.tar.lzma -------------------------------------------------------------------------------- /tests/utils_tests/archives/foobar.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/tests/utils_tests/archives/foobar.tar.xz -------------------------------------------------------------------------------- /tests/utils_tests/test_module/bad_module.py: -------------------------------------------------------------------------------- 1 | import a_package_name_that_does_not_exist # NOQA 2 | 3 | content = "Bad Module" 4 | -------------------------------------------------------------------------------- /django/conf/locale/af/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/af/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/ar/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/ar/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/ast/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/ast/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/az/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/az/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/be/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/be/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/bg/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/bg/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/bn/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/bn/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/br/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/br/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/bs/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/bs/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/ca/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/ca/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/ckb/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/ckb/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/cs/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/cs/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/cy/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/cy/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/da/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/da/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/de/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/de/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/dsb/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/dsb/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/el/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/el/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/en/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/en/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/eo/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/eo/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/es/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/es/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/et/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/et/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/eu/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/eu/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/fa/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/fa/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/fi/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/fi/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/fr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/fr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/fy/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/fy/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/ga/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/ga/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/gd/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/gd/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/gl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/gl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/he/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/he/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/hi/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/hi/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/hr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/hr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/hsb/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/hsb/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/hu/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/hu/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/hy/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/hy/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/ia/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/ia/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/id/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/id/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/ig/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/ig/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/io/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/io/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/is/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/is/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/it/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/it/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/ja/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/ja/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/ka/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/ka/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/kab/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/kab/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/kk/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/kk/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/km/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/km/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/kn/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/kn/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/ko/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/ko/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/ky/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/ky/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/lb/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/lb/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/lt/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/lt/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/lv/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/lv/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/mk/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/mk/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/ml/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/ml/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/mn/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/mn/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/mr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/mr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/ms/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/ms/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/my/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/my/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/nb/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/nb/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/ne/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/ne/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/nl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/nl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/nn/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/nn/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/os/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/os/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/pa/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/pa/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/pl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/pl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/pt/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/pt/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/ro/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/ro/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/ru/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/ru/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/sk/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/sk/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/sl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/sl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/sq/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/sq/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/sr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/sr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/sv/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/sv/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/sw/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/sw/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/ta/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/ta/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/te/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/te/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/tg/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/tg/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/th/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/th/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/tk/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/tk/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/tr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/tr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/tt/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/tt/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/udm/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/udm/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/ug/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/ug/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/uk/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/uk/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/ur/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiro/django/main/django/conf/locale/ur/LC_MESSAGES/django.mo --------------------------------------------------------------------------------