├── django ├── core │ ├── __init__.py │ ├── handlers │ │ └── __init__.py │ ├── servers │ │ └── __init__.py │ ├── cache │ │ └── backends │ │ │ └── __init__.py │ ├── management │ │ └── commands │ │ │ └── __init__.py │ ├── checks │ │ └── compatibility │ │ │ └── __init__.py │ ├── mail │ │ └── backends │ │ │ └── __init__.py │ └── files │ │ └── __init__.py ├── contrib │ ├── __init__.py │ ├── gis │ │ ├── db │ │ │ ├── __init__.py │ │ │ └── backends │ │ │ │ ├── __init__.py │ │ │ │ ├── mysql │ │ │ │ └── __init__.py │ │ │ │ ├── oracle │ │ │ │ └── __init__.py │ │ │ │ ├── postgis │ │ │ │ └── __init__.py │ │ │ │ └── spatialite │ │ │ │ └── __init__.py │ │ ├── maps │ │ │ ├── __init__.py │ │ │ └── openlayers │ │ │ │ └── __init__.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── geo3d │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── geoapp │ │ │ │ └── __init__.py │ │ │ ├── maps │ │ │ │ └── __init__.py │ │ │ ├── distapp │ │ │ │ └── __init__.py │ │ │ ├── geoadmin │ │ │ │ └── __init__.py │ │ │ ├── geogapp │ │ │ │ └── __init__.py │ │ │ ├── inspectapp │ │ │ │ └── __init__.py │ │ │ ├── layermap │ │ │ │ └── __init__.py │ │ │ ├── relatedapp │ │ │ │ └── __init__.py │ │ │ └── data │ │ │ │ ├── test_vrt │ │ │ │ └── test_vrt.csv │ │ │ │ ├── invalid │ │ │ │ └── emptypoints.dbf │ │ │ │ ├── texas.dbf │ │ │ │ ├── cities │ │ │ │ ├── cities.dbf │ │ │ │ ├── cities.shp │ │ │ │ └── cities.shx │ │ │ │ └── ch-city │ │ │ │ ├── ch-city.dbf │ │ │ │ ├── ch-city.shp │ │ │ │ └── ch-city.shx │ │ ├── gdal │ │ │ ├── tests │ │ │ │ └── __init__.py │ │ │ └── prototypes │ │ │ │ └── __init__.py │ │ ├── geometry │ │ │ └── __init__.py │ │ ├── geos │ │ │ └── tests │ │ │ │ └── __init__.py │ │ ├── management │ │ │ ├── __init__.py │ │ │ └── commands │ │ │ │ └── __init__.py │ │ └── locale │ │ │ ├── ar │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── az │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── be │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── bg │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── bn │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── br │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── bs │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── ca │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── cs │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── cy │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── da │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── de │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── el │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── eo │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── es │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── et │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── eu │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── fa │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── fi │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── fr │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── fy │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── ga │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── gl │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── he │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── hi │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── hr │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── hu │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── ia │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── id │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── is │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── it │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── ja │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── ka │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── kk │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── km │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── kn │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── ko │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── lt │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── lv │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── mk │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── ml │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── mn │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── nb │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── ne │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── nl │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── nn │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── pa │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── pl │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── pt │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── ro │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── ru │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── sk │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── sl │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── sq │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── sr │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── sv │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── sw │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── ta │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── te │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── th │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── tr │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── tt │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── uk │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── ur │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ └── vi │ │ │ └── LC_MESSAGES │ │ │ └── django.mo │ ├── admin │ │ ├── views │ │ │ └── __init__.py │ │ ├── templatetags │ │ │ └── __init__.py │ │ ├── static │ │ │ └── admin │ │ │ │ └── img │ │ │ │ ├── icon-no.gif │ │ │ │ ├── icon-yes.gif │ │ │ │ ├── nav-bg.gif │ │ │ │ ├── default-bg.gif │ │ │ │ ├── icon_alert.gif │ │ │ │ ├── icon_clock.gif │ │ │ │ └── icon_error.gif │ │ └── locale │ │ │ ├── af │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── ar │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── az │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── be │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── bg │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── bn │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── br │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── bs │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── ca │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── cs │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── cy │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── da │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── de │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── el │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── eo │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── es │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── et │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── eu │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── fa │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── fi │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── fr │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── fy │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── ga │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── gl │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── he │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── hi │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── hr │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── hu │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── ia │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── id │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── is │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── it │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── ja │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── ka │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── kk │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── km │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── kn │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── ko │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── lb │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── lt │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── lv │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── mk │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── ml │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── mn │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── my │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── nb │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── ne │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── nl │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── nn │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── os │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── pa │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── pl │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── pt │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── ro │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── ru │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── sk │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── sl │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── sq │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── sr │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── sv │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── sw │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── ta │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── te │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── th │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── tr │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── tt │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── uk │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── ur │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ └── vi │ │ │ └── LC_MESSAGES │ │ │ └── django.mo │ ├── admindocs │ │ ├── tests │ │ │ └── __init__.py │ │ └── __init__.py │ ├── auth │ │ ├── handlers │ │ │ └── __init__.py │ │ ├── management │ │ │ └── commands │ │ │ │ └── __init__.py │ │ ├── tests │ │ │ ├── templates │ │ │ │ ├── registration │ │ │ │ │ ├── logged_out.html │ │ │ │ │ ├── login.html │ │ │ │ │ ├── password_reset_done.html │ │ │ │ │ ├── password_reset_form.html │ │ │ │ │ ├── password_change_form.html │ │ │ │ │ ├── password_reset_complete.html │ │ │ │ │ └── password_reset_email.html │ │ │ │ └── context_processors │ │ │ │ │ ├── auth_attrs_no_access.html │ │ │ │ │ ├── auth_attrs_access.html │ │ │ │ │ └── auth_attrs_messages.html │ │ │ └── __init__.py │ │ └── locale │ │ │ ├── af │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── ar │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── az │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── be │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── bg │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── bn │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── br │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── bs │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── ca │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── cs │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── cy │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── da │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── de │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── el │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── eo │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── es │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── et │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── eu │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── fa │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── fi │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── fr │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── fy │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── ga │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── gl │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── he │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── hi │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── hr │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── hu │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── ia │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── id │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── is │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── it │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── ja │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── ka │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── kk │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── km │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── kn │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── ko │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── lt │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── lv │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── mk │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── ml │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── mn │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── my │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── nb │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── ne │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── nl │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── nn │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── os │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── pa │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── pl │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── pt │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── ro │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── ru │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── sk │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── sl │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── sq │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── sr │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── sv │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── sw │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── ta │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── te │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── th │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── tr │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── tt │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ ├── uk │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ └── ur │ │ │ └── LC_MESSAGES │ │ │ └── django.mo │ ├── comments │ │ ├── views │ │ │ └── __init__.py │ │ └── templatetags │ │ │ └── __init__.py │ ├── flatpages │ │ ├── tests │ │ │ ├── __init__.py │ │ │ └── templates │ │ │ │ ├── 404.html │ │ │ │ └── registration │ │ │ │ └── login.html │ │ ├── templatetags │ │ │ └── __init__.py │ │ └── __init__.py │ ├── formtools │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── wizard │ │ │ │ ├── __init__.py │ │ │ │ ├── wizardtests │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── templates │ │ │ │ │ │ └── other_wizard_form.html │ │ │ │ └── namedwizardtests │ │ │ │ │ └── __init__.py │ │ │ └── templates │ │ │ │ ├── 404.html │ │ │ │ └── base.html │ │ ├── wizard │ │ │ └── __init__.py │ │ ├── __init__.py │ │ └── models.py │ ├── messages │ │ └── tests │ │ │ └── __init__.py │ ├── sitemaps │ │ ├── tests │ │ │ ├── __init__.py │ │ │ └── urls │ │ │ │ └── __init__.py │ │ ├── management │ │ │ ├── __init__.py │ │ │ └── commands │ │ │ │ └── __init__.py │ │ └── models.py │ ├── humanize │ │ ├── templatetags │ │ │ └── __init__.py │ │ └── __init__.py │ ├── sessions │ │ ├── backends │ │ │ └── __init__.py │ │ ├── management │ │ │ ├── __init__.py │ │ │ └── commands │ │ │ │ └── __init__.py │ │ └── __init__.py │ ├── staticfiles │ │ ├── management │ │ │ ├── __init__.py │ │ │ └── commands │ │ │ │ └── __init__.py │ │ ├── templatetags │ │ │ └── __init__.py │ │ └── __init__.py │ ├── webdesign │ │ ├── templatetags │ │ │ └── __init__.py │ │ └── __init__.py │ ├── sites │ │ └── __init__.py │ ├── redirects │ │ └── __init__.py │ ├── contenttypes │ │ └── __init__.py │ └── syndication │ │ └── __init__.py ├── utils │ ├── __init__.py │ └── 2to3_fixes │ │ └── __init__.py ├── views │ ├── __init__.py │ └── decorators │ │ └── __init__.py ├── bin │ └── profiling │ │ └── __init__.py ├── conf │ ├── locale │ │ ├── ar │ │ │ ├── __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 │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── th │ │ │ ├── __init__.py │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── tr │ │ │ ├── __init__.py │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── uk │ │ │ ├── __init__.py │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── vi │ │ │ ├── __init__.py │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── de_CH │ │ │ └── __init__.py │ │ ├── en_AU │ │ │ └── __init__.py │ │ ├── en_GB │ │ │ ├── __init__.py │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── es_AR │ │ │ ├── __init__.py │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── es_MX │ │ │ ├── __init__.py │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── es_NI │ │ │ └── __init__.py │ │ ├── es_PR │ │ │ └── __init__.py │ │ ├── pt_BR │ │ │ ├── __init__.py │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── sr_Latn │ │ │ ├── __init__.py │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── zh_CN │ │ │ ├── __init__.py │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── zh_Hans │ │ │ ├── __init__.py │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── zh_Hant │ │ │ ├── __init__.py │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── zh_TW │ │ │ ├── __init__.py │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── af │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── az │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── be │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── br │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── eo │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── ia │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── kk │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ ├── lb │ │ │ └── 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 │ │ └── es_VE │ │ │ └── LC_MESSAGES │ │ │ └── django.mo │ ├── app_template │ │ ├── __init__.py │ │ ├── migrations │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── admin.py │ │ ├── tests.py │ │ └── views.py │ └── project_template │ │ └── project_name │ │ └── __init__.py ├── middleware │ └── __init__.py ├── templatetags │ └── __init__.py ├── db │ ├── backends │ │ ├── dummy │ │ │ └── __init__.py │ │ ├── mysql │ │ │ └── __init__.py │ │ ├── oracle │ │ │ └── __init__.py │ │ ├── sqlite3 │ │ │ └── __init__.py │ │ ├── postgresql_psycopg2 │ │ │ └── __init__.py │ │ └── signals.py │ └── migrations │ │ └── __init__.py ├── template │ └── loaders │ │ └── __init__.py ├── apps │ └── __init__.py └── forms │ └── extras │ └── __init__.py ├── tests ├── apps │ ├── __init__.py │ ├── namespace_package_other_base │ │ └── nsapp │ │ │ └── .keep │ └── default_config_app │ │ └── __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 │ ├── test.png │ ├── magic.png │ └── test1.png ├── i18n │ ├── __init__.py │ ├── other │ │ ├── __init__.py │ │ └── locale │ │ │ ├── __init__.py │ │ │ ├── de │ │ │ ├── __init__.py │ │ │ ├── formats.py │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ │ └── fr │ │ │ └── LC_MESSAGES │ │ │ └── django.mo │ ├── patterns │ │ ├── __init__.py │ │ ├── templates │ │ │ ├── 404.html │ │ │ └── dummy.html │ │ └── urls │ │ │ └── __init__.py │ ├── resolution │ │ └── __init__.py │ ├── contenttypes │ │ └── __init__.py │ ├── project_dir │ │ ├── app_no_locale │ │ │ └── __init__.py │ │ ├── project_locale │ │ │ └── .gitkeep │ │ └── app_with_locale │ │ │ ├── __init__.py │ │ │ └── locale │ │ │ └── .gitkeep │ └── commands │ │ ├── ignore_dir │ │ └── ignored.html │ │ ├── templates │ │ └── xxx_ignored.html │ │ └── not_utf8.sample ├── mail │ └── __init__.py ├── str │ └── __init__.py ├── text │ └── __init__.py ├── wsgi │ ├── __init__.py │ └── wsgi.py ├── admin_docs │ └── __init__.py ├── admin_util │ └── __init__.py ├── backends │ └── __init__.py ├── bug639 │ ├── __init__.py │ └── test.jpg ├── bug8245 │ ├── __init__.py │ └── models.py ├── choices │ └── __init__.py ├── csrf_tests │ └── __init__.py ├── custom_pk │ └── __init__.py ├── datatypes │ └── __init__.py ├── datetimes │ └── __init__.py ├── decorators │ └── __init__.py ├── delete │ └── __init__.py ├── dispatch │ ├── __init__.py │ └── tests │ │ └── __init__.py ├── fixtures │ ├── __init__.py │ └── fixtures │ │ ├── fixture5.json.gz │ │ ├── fixture4.json.zip │ │ └── fixture5.json.zip ├── handlers │ └── __init__.py ├── http_utils │ └── __init__.py ├── 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 │ │ └── import_error │ │ │ └── __init__.py │ ├── test_migrations │ │ └── __init__.py │ ├── test_migrations_2 │ │ └── __init__.py │ ├── migrations_test_apps │ │ ├── __init__.py │ │ ├── normal │ │ │ └── __init__.py │ │ └── with_package_model │ │ │ ├── __init__.py │ │ │ └── models │ │ │ └── __init__.py │ ├── test_migrations_conflict │ │ └── __init__.py │ ├── test_migrations_squashed │ │ └── __init__.py │ └── test_migrations_unmigdep │ │ └── __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 ├── requests │ └── __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 │ └── models.py ├── 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 ├── 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 │ │ └── models │ │ │ └── __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 │ └── custom_templates │ │ ├── app_template │ │ ├── __init__.py │ │ └── api.py │ │ └── project_template │ │ ├── project_name │ │ ├── __init__.py │ │ └── settings.py │ │ ├── additional_dir │ │ ├── extra.py │ │ ├── Procfile │ │ ├── requirements.txt │ │ └── additional_file.py │ │ └── ticket-18091-non-ascii-template.txt ├── admin_views │ └── __init__.py ├── admin_widgets │ └── __init__.py ├── aggregation │ └── __init__.py ├── app_loading │ ├── __init__.py │ ├── not_installed │ │ └── __init__.py │ └── eggs │ │ ├── modelapp.egg │ │ ├── omelet.egg │ │ ├── brokenapp.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 ├── commands_sql │ └── __init__.py ├── comment_tests │ ├── __init__.py │ └── custom_comments │ │ ├── forms.py │ │ └── models.py ├── createsuperuser │ └── __init__.py ├── custom_columns │ └── __init__.py ├── custom_lookups │ └── __init__.py ├── custom_managers │ └── __init__.py ├── custom_methods │ └── __init__.py ├── db_backends │ └── __init__.py ├── db_typecasts │ └── __init__.py ├── defaultfilters │ └── __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 ├── foreign_object │ └── __init__.py ├── forms_tests │ ├── __init__.py │ └── tests │ │ ├── __init__.py │ │ └── filepath_test_files │ │ ├── .dot-file │ │ ├── fake-image.jpg │ │ ├── directory │ │ └── .keep │ │ └── real-text-file.txt ├── generic_views │ ├── __init__.py │ └── templates │ │ ├── generic_views │ │ ├── robots.txt │ │ ├── artist_form.html │ │ ├── author_form.html │ │ ├── detail.html │ │ ├── author_confirm_delete.html │ │ ├── book_detail.html │ │ ├── form.html │ │ ├── artist_detail.html │ │ ├── author_detail.html │ │ ├── book_archive_month.html │ │ ├── confirm_delete.html │ │ ├── about.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 │ │ ├── apple_detail.html │ │ ├── book_archive.html │ │ └── book_archive_year.html │ │ └── registration │ │ └── login.html ├── get_or_create │ └── __init__.py ├── httpwrappers │ ├── __init__.py │ └── abc.txt ├── 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 ├── migrate_signals │ ├── __init__.py │ └── models.py ├── model_fields │ ├── __init__.py │ ├── 4x8.png │ └── 8x4.png ├── model_forms │ ├── __init__.py │ ├── test.png │ └── test2.png ├── model_formsets │ └── __init__.py ├── model_package │ └── __init__.py ├── model_permalink │ └── __init__.py ├── model_regress │ └── __init__.py ├── null_queries │ └── __init__.py ├── proxy_models │ └── __init__.py ├── queryset_pickle │ └── __init__.py ├── reserved_names │ └── __init__.py ├── resolve_url │ └── __init__.py ├── reverse_lookup │ └── __init__.py ├── select_related │ └── __init__.py ├── serializers │ └── __init__.py ├── settings_tests │ └── __init__.py ├── sites_framework │ └── __init__.py ├── string_lookup │ └── __init__.py ├── tablespaces │ └── __init__.py ├── template_tests │ ├── __init__.py │ ├── templatetags │ │ ├── __init__.py │ │ ├── subpackage │ │ │ ├── __init__.py │ │ │ └── echo_invalid.py │ │ └── broken_tag.py │ ├── templates │ │ ├── inclusion.html │ │ ├── test_context.html │ │ ├── first │ │ │ └── test.html │ │ ├── priority │ │ │ └── foo.html │ │ ├── second │ │ │ └── test.html │ │ ├── broken_base.html │ │ ├── test_include_error.html │ │ ├── test_extends_error.html │ │ ├── ssi_include.html │ │ ├── test_incl_tag_use_l10n.html │ │ ├── test_incl_tag_current_app.html │ │ ├── response.html │ │ ├── included_base.html │ │ └── ssi include with spaces.html │ ├── other_templates │ │ └── test_dirs.html │ └── eggs │ │ └── tagsegg.egg ├── test_client │ └── __init__.py ├── test_runner │ ├── __init__.py │ └── valid_app │ │ ├── models │ │ └── __init__.py │ │ └── tests │ │ └── __init__.py ├── transactions │ └── __init__.py ├── user_commands │ ├── __init__.py │ └── management │ │ ├── __init__.py │ │ └── commands │ │ └── __init__.py ├── utils_tests │ ├── __init__.py │ ├── test_module │ │ ├── good_module.py │ │ ├── another_good_module.py │ │ ├── __init__.py │ │ └── bad_module.py │ ├── test_no_submodule.py │ ├── eggs │ │ └── test_egg.egg │ ├── archives │ │ ├── foobar.zip │ │ ├── foobar.tar.gz │ │ └── foobar.tar.bz2 │ └── locale │ │ └── nl │ │ └── LC_MESSAGES │ │ └── django.mo ├── view_tests │ ├── app0 │ │ └── __init__.py │ ├── app1 │ │ └── __init__.py │ ├── app2 │ │ └── __init__.py │ ├── app3 │ │ └── __init__.py │ ├── app4 │ │ └── __init__.py │ ├── tests │ │ └── __init__.py │ ├── templatetags │ │ └── __init__.py │ ├── media │ │ ├── file.txt │ │ ├── file.unknown │ │ └── file.txt.gz │ ├── other_templates │ │ └── render_dirs_test.html │ ├── templates │ │ └── debug │ │ │ ├── render_test.html │ │ │ └── template_exception.html │ └── locale │ │ ├── de │ │ └── LC_MESSAGES │ │ │ └── djangojs.mo │ │ ├── es │ │ └── LC_MESSAGES │ │ │ └── djangojs.mo │ │ ├── fr │ │ └── LC_MESSAGES │ │ │ └── djangojs.mo │ │ ├── nl │ │ └── LC_MESSAGES │ │ │ └── django.mo │ │ └── ru │ │ └── LC_MESSAGES │ │ └── djangojs.mo ├── admin_changelist │ └── __init__.py ├── admin_custom_urls │ └── __init__.py ├── admin_registration │ └── __init__.py ├── admin_validation │ └── __init__.py ├── aggregation_regress │ └── __init__.py ├── contenttypes_tests │ └── __init__.py ├── context_processors │ └── __init__.py ├── distinct_on_fields │ └── __init__.py ├── expressions_regress │ └── __init__.py ├── field_deconstruction │ └── __init__.py ├── field_subclassing │ └── __init__.py ├── fixtures_regress │ ├── __init__.py │ └── fixtures │ │ ├── empty.json │ │ └── bad_fixture1.unkn ├── force_insert_update │ └── __init__.py ├── generic_inline_admin │ └── __init__.py ├── generic_relations │ └── __init__.py ├── get_object_or_404 │ └── __init__.py ├── initial_sql_regress │ └── __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 ├── many_to_one_regress │ └── __init__.py ├── model_forms_regress │ └── __init__.py ├── model_inheritance │ └── __init__.py ├── model_validation │ └── __init__.py ├── multiple_database │ └── __init__.py ├── mutually_referential │ └── __init__.py ├── nested_foreign_keys │ └── __init__.py ├── null_fk_ordering │ └── __init__.py ├── one_to_one_regress │ └── __init__.py ├── prefetch_related │ └── __init__.py ├── save_delete_hooks │ └── __init__.py ├── select_for_update │ └── __init__.py ├── serializers_regress │ └── __init__.py ├── signed_cookies_tests │ └── __init__.py ├── staticfiles_tests │ ├── __init__.py │ ├── apps │ │ ├── __init__.py │ │ ├── test │ │ │ ├── __init__.py │ │ │ ├── otherdir │ │ │ │ └── odfile.txt │ │ │ └── static │ │ │ │ └── test │ │ │ │ ├── file1.txt │ │ │ │ ├── CVS │ │ │ │ ├── file.txt │ │ │ │ └── test.ignoreme │ │ └── no_label │ │ │ ├── __init__.py │ │ │ └── static │ │ │ └── file2.txt │ ├── urls │ │ └── __init__.py │ └── project │ │ ├── documents │ │ ├── cached │ │ │ ├── other.css │ │ │ ├── css │ │ │ │ ├── fonts │ │ │ │ │ ├── font.eot │ │ │ │ │ └── font.svg │ │ │ │ └── window.css │ │ │ ├── import.css │ │ │ ├── styles.css │ │ │ ├── styles_insensitive.css │ │ │ └── url.css │ │ ├── test.txt │ │ ├── subdir │ │ │ └── test.txt │ │ └── test │ │ │ ├── camelCase.txt │ │ │ └── file.txt │ │ ├── prefixed │ │ └── test.txt │ │ ├── site_media │ │ ├── static │ │ │ └── testfile.txt │ │ └── media │ │ │ └── media-file.txt │ │ └── faulty │ │ └── faulty.css ├── swappable_models │ └── __init__.py ├── syndication_tests │ ├── __init__.py │ └── templates │ │ └── syndication │ │ ├── title.html │ │ ├── title_context.html │ │ ├── description_context.html │ │ └── description.html ├── test_client_regress │ ├── __init__.py │ └── templates │ │ └── request_context.html ├── test_discovery_sample │ ├── empty.py │ ├── __init__.py │ └── tests │ │ └── __init__.py ├── test_suite_override │ └── __init__.py ├── transactions_regress │ └── __init__.py ├── unmanaged_models │ └── __init__.py ├── update_only_fields │ └── __init__.py ├── urlpatterns_reverse │ ├── __init__.py │ ├── no_urls.py │ └── erroneous_views_module.py ├── conditional_processing │ └── __init__.py ├── custom_columns_regress │ └── __init__.py ├── custom_managers_regress │ └── __init__.py ├── fixtures_model_package │ ├── __init__.py │ └── sql │ │ └── book.sql ├── generic_relations_regress │ └── __init__.py ├── get_earliest_or_latest │ └── __init__.py ├── get_or_create_regress │ └── __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 ├── proxy_model_inheritance │ ├── __init__.py │ ├── app1 │ │ └── __init__.py │ └── app2 │ │ ├── __init__.py │ │ └── models.py ├── requirements │ ├── oracle.txt │ ├── mysql.txt │ ├── postgres.txt │ ├── py2.txt │ ├── py3.txt │ └── base.txt ├── reverse_single_related │ └── __init__.py ├── select_related_onetoone │ └── __init__.py ├── select_related_regress │ └── __init__.py ├── test_discovery_sample2 │ └── __init__.py ├── templates │ ├── priority │ │ └── foo.html │ ├── views │ │ ├── article_list.html │ │ ├── article_detail.html │ │ ├── urlarticle_detail.html │ │ ├── article_archive_month.html │ │ ├── article_confirm_delete.html │ │ ├── article_archive_day.html │ │ ├── article_form.html │ │ ├── datearticle_archive_month.html │ │ └── urlarticle_form.html │ └── custom_admin │ │ ├── add_form.html │ │ ├── change_form.html │ │ ├── object_history.html │ │ ├── delete_confirmation.html │ │ └── delete_selected_confirmation.html ├── test_runner_deprecation_app │ └── __init__.py ├── test_runner_invalid_app │ └── models │ │ └── __init__.py ├── model_inheritance_same_model_name │ └── __init__.py └── model_inheritance_select_related │ └── __init__.py ├── docs ├── _theme │ ├── djangodocs-epub │ │ └── static │ │ │ ├── docicons-note.png │ │ │ ├── docicons-warning.png │ │ │ ├── docicons-philosophy.png │ │ │ └── docicons-behindscenes.png │ └── djangodocs │ │ ├── theme.conf │ │ ├── static │ │ ├── default.css │ │ ├── docicons-note.png │ │ └── docicons-warning.png │ │ └── search.html ├── intro │ └── _images │ │ ├── admin01.png │ │ ├── admin02.png │ │ ├── admin07.png │ │ ├── admin09.png │ │ ├── admin10.png │ │ ├── admin03t.png │ │ ├── admin04t.png │ │ ├── admin05t.png │ │ ├── admin06t.png │ │ ├── admin08t.png │ │ ├── admin11t.png │ │ ├── admin12t.png │ │ ├── admin13t.png │ │ ├── admin14t.png │ │ └── admin15t.png ├── topics │ └── http │ │ ├── _images │ │ └── middleware.pdf │ │ └── generic-views.txt ├── internals │ └── _images │ │ └── triage_process.pdf └── ref │ └── contrib │ └── admin │ └── _images │ ├── user_actions.png │ ├── article_actions.png │ ├── flatfiles_admin.png │ └── raw_id_fields.png ├── extras └── README.TXT └── .hgignore /django/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/apps/__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/str/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/text/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/wsgi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/admin_docs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/admin_util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bug639/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bug8245/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/choices/__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/decorators/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/delete/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dispatch/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/http_utils/__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/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/requests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/responses/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/schema/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/servers/__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 | -------------------------------------------------------------------------------- /django/bin/profiling/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/ar/__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/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/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/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/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/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/th/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/tr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/uk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/vi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/gis/db/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/core/handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/core/servers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/middleware/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/admin_checks/__init__.py: -------------------------------------------------------------------------------- 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_views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/admin_widgets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/aggregation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/app_loading/__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/commands_sql/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/comment_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/createsuperuser/__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_backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/db_typecasts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/defaultfilters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/defer_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/delete_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/deprecation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dispatch/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/empty/no_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/foreign_object/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/forms_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/generic_views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/get_or_create/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/httpwrappers/__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/migrate_signals/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/model_fields/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/model_forms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/model_formsets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/model_package/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/model_permalink/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/model_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/null_queries/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/proxy_models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/queryset_pickle/__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/settings_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/sites_framework/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/string_lookup/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tablespaces/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/template_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_client/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_runner/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/transactions/__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 | -------------------------------------------------------------------------------- /django/conf/app_template/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/de_CH/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/en_AU/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/en_GB/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/es_AR/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/es_MX/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/es_NI/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/es_PR/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/pt_BR/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/sr_Latn/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/zh_CN/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/zh_Hans/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/zh_Hant/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/locale/zh_TW/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/admin/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/gis/maps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/gis/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/core/cache/backends/__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/loaders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/utils/2to3_fixes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/views/decorators/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/admin_changelist/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/admin_custom_urls/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/admin_registration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/admin_validation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/aggregation_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/contenttypes_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/context_processors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/distinct_on_fields/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/expressions_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/field_deconstruction/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/field_subclassing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/force_insert_update/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/forms_tests/tests/__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/i18n/contenttypes/__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/patterns/templates/404.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/i18n/patterns/urls/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/initial_sql_regress/__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/many_to_one_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/model_forms_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/model_inheritance/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/model_validation/__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/one_to_one_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/prefetch_related/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/save_delete_hooks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/select_for_update/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/serializers_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/servers/another_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/signed_cookies_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/staticfiles_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/swappable_models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/syndication_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_client_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_discovery_sample/empty.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_suite_override/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/transactions_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unmanaged_models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/update_only_fields/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/urlpatterns_reverse/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/view_tests/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/admindocs/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/auth/handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/comments/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/flatpages/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/formtools/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/formtools/wizard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/gis/db/backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/gis/gdal/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/gis/geometry/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/gis/geos/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/gis/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/gis/tests/geo3d/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/gis/tests/geoapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/gis/tests/maps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/messages/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/sitemaps/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/core/management/commands/__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/conditional_processing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/custom_columns_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/custom_managers_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures_model_package/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/generic_relations_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/get_earliest_or_latest/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/get_or_create_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/i18n/patterns/templates/dummy.html: -------------------------------------------------------------------------------- 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/proxy_model_inheritance/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/requirements/oracle.txt: -------------------------------------------------------------------------------- 1 | cx_oracle 2 | -------------------------------------------------------------------------------- /tests/reverse_single_related/__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/test_discovery_sample/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_discovery_sample2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/user_commands/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/view_tests/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/app_template/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/admin/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/comments/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/gis/db/backends/mysql/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/gis/gdal/prototypes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/gis/maps/openlayers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/gis/tests/distapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/gis/tests/geoadmin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/gis/tests/geogapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/gis/tests/inspectapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/gis/tests/layermap/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/gis/tests/relatedapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/humanize/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/sessions/backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/sessions/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/sitemaps/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/sitemaps/tests/urls/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/core/checks/compatibility/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/admin_scripts/app_with_import/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bash_completion/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures_regress/fixtures/empty.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /tests/httpwrappers/abc.txt: -------------------------------------------------------------------------------- 1 | random content 2 | -------------------------------------------------------------------------------- /tests/i18n/project_dir/app_no_locale/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/i18n/project_dir/project_locale/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/faulty_migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_migrations_2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/proxy_model_inheritance/app1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/proxy_model_inheritance/app2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/requirements/mysql.txt: -------------------------------------------------------------------------------- 1 | MySQL-python 2 | -------------------------------------------------------------------------------- /tests/requirements/postgres.txt: -------------------------------------------------------------------------------- 1 | psycopg2 2 | -------------------------------------------------------------------------------- /tests/staticfiles_tests/apps/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/template_tests/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/templates/priority/foo.html: -------------------------------------------------------------------------------- 1 | priority 2 | -------------------------------------------------------------------------------- /tests/test_discovery_sample/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_runner/valid_app/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_runner/valid_app/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_runner_deprecation_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_runner_invalid_app/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/conf/project_template/project_name/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/auth/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/flatpages/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/formtools/tests/wizard/__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 | -------------------------------------------------------------------------------- /django/contrib/staticfiles/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/webdesign/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/db/backends/postgresql_psycopg2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/admin_scripts/app_raising_messages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/admin_scripts/app_raising_warning/__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/bash_completion/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/forms_tests/tests/filepath_test_files/.dot-file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/i18n/project_dir/app_with_locale/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_migrations_conflict/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_migrations_squashed/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_migrations_unmigdep/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/model_inheritance_same_model_name/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/model_inheritance_select_related/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/staticfiles_tests/apps/no_label/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_utils/templates/template_used/base.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/user_commands/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/view_tests/media/file.txt: -------------------------------------------------------------------------------- 1 | An example media file. -------------------------------------------------------------------------------- /django/contrib/sessions/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/sitemaps/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/staticfiles/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/admin_scripts/complex_app/management/__init__.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/migrations_test_apps/normal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/staticfiles_tests/project/documents/cached/other.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/staticfiles_tests/project/prefixed/test.txt: -------------------------------------------------------------------------------- 1 | Prefix! -------------------------------------------------------------------------------- /tests/template_tests/templatetags/subpackage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/templates/views/article_list.html: -------------------------------------------------------------------------------- 1 | {{ object_list }} -------------------------------------------------------------------------------- /tests/test_utils/templates/template_used/alternative.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/formtools/tests/wizard/wizardtests/__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/tests/filepath_test_files/directory/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/forms_tests/tests/filepath_test_files/real-text-file.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/faulty_migrations/namespace/foo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/requirements/py2.txt: -------------------------------------------------------------------------------- 1 | -r base.txt 2 | python-memcached 3 | -------------------------------------------------------------------------------- /tests/template_tests/templates/inclusion.html: -------------------------------------------------------------------------------- 1 | {{ result }} 2 | -------------------------------------------------------------------------------- /tests/template_tests/templates/test_context.html: -------------------------------------------------------------------------------- 1 | obj:{{ obj }} -------------------------------------------------------------------------------- /django/contrib/flatpages/tests/templates/404.html: -------------------------------------------------------------------------------- 1 |

Oh Noes!

-------------------------------------------------------------------------------- /django/contrib/flatpages/tests/templates/registration/login.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/contrib/formtools/tests/templates/404.html: -------------------------------------------------------------------------------- 1 | Not found. 2 | -------------------------------------------------------------------------------- /django/contrib/formtools/tests/wizard/namedwizardtests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/with_package_model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/requirements/py3.txt: -------------------------------------------------------------------------------- 1 | -r base.txt 2 | python3-memcached 3 | -------------------------------------------------------------------------------- /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/site_media/static/testfile.txt: -------------------------------------------------------------------------------- 1 | Test! -------------------------------------------------------------------------------- /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/view_tests/media/file.unknown: -------------------------------------------------------------------------------- 1 | An unknown file extension. 2 | -------------------------------------------------------------------------------- /tests/view_tests/other_templates/render_dirs_test.html: -------------------------------------------------------------------------------- 1 | spam eggs 2 | -------------------------------------------------------------------------------- /django/contrib/gis/tests/geo3d/views.py: -------------------------------------------------------------------------------- 1 | # Create your views here. 2 | -------------------------------------------------------------------------------- /tests/generic_views/templates/generic_views/robots.txt: -------------------------------------------------------------------------------- 1 | User-Agent: * 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/contrib/auth/tests/templates/registration/logged_out.html: -------------------------------------------------------------------------------- 1 | Logged out -------------------------------------------------------------------------------- /django/contrib/auth/tests/templates/registration/login.html: -------------------------------------------------------------------------------- 1 | {{ form.as_ul }} -------------------------------------------------------------------------------- /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/generic_views/templates/generic_views/artist_form.html: -------------------------------------------------------------------------------- 1 | A form: {{ form }} -------------------------------------------------------------------------------- /tests/generic_views/templates/generic_views/author_form.html: -------------------------------------------------------------------------------- 1 | A form: {{ form }} -------------------------------------------------------------------------------- /tests/generic_views/templates/generic_views/detail.html: -------------------------------------------------------------------------------- 1 | Look, an {{ object }}. -------------------------------------------------------------------------------- /tests/generic_views/templates/registration/login.html: -------------------------------------------------------------------------------- 1 | An empty login template. -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/with_package_model/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/staticfiles_tests/apps/test/otherdir/odfile.txt: -------------------------------------------------------------------------------- 1 | File in otherdir. 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/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 | -------------------------------------------------------------------------------- /django/contrib/auth/tests/templates/registration/password_reset_done.html: -------------------------------------------------------------------------------- 1 | Email sent -------------------------------------------------------------------------------- /django/contrib/auth/tests/templates/registration/password_reset_form.html: -------------------------------------------------------------------------------- 1 | {{ form }} -------------------------------------------------------------------------------- /tests/admin_scripts/broken_app/models.py: -------------------------------------------------------------------------------- 1 | from django.db import modelz # NOQA 2 | -------------------------------------------------------------------------------- /tests/generic_views/templates/generic_views/author_confirm_delete.html: -------------------------------------------------------------------------------- 1 | Are you sure? -------------------------------------------------------------------------------- /tests/generic_views/templates/generic_views/book_detail.html: -------------------------------------------------------------------------------- 1 | This is {{ book }}. -------------------------------------------------------------------------------- /tests/generic_views/templates/generic_views/form.html: -------------------------------------------------------------------------------- 1 | A generic form: {{ form }} -------------------------------------------------------------------------------- /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 app media 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_tests/templates/broken_base.html: -------------------------------------------------------------------------------- 1 | {% include "missing.html" %} 2 | -------------------------------------------------------------------------------- /tests/template_tests/templates/test_include_error.html: -------------------------------------------------------------------------------- 1 | {% include "missing.html" %} -------------------------------------------------------------------------------- /django/contrib/auth/tests/templates/context_processors/auth_attrs_no_access.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /django/contrib/auth/tests/templates/registration/password_change_form.html: -------------------------------------------------------------------------------- 1 | {{ form }} -------------------------------------------------------------------------------- /django/contrib/formtools/tests/templates/base.html: -------------------------------------------------------------------------------- 1 | {% block content %} 2 | {% endblock %} -------------------------------------------------------------------------------- /tests/generic_views/templates/generic_views/artist_detail.html: -------------------------------------------------------------------------------- 1 | This is an {{ artist }}. -------------------------------------------------------------------------------- /tests/generic_views/templates/generic_views/author_detail.html: -------------------------------------------------------------------------------- 1 | This is an {{ author }}. -------------------------------------------------------------------------------- /tests/generic_views/templates/generic_views/book_archive_month.html: -------------------------------------------------------------------------------- 1 | Books in {{ month }}. -------------------------------------------------------------------------------- /tests/generic_views/templates/generic_views/confirm_delete.html: -------------------------------------------------------------------------------- 1 | Generic: Are you sure? -------------------------------------------------------------------------------- /tests/staticfiles_tests/apps/test/static/test/test.ignoreme: -------------------------------------------------------------------------------- 1 | This file should be ignored. -------------------------------------------------------------------------------- /tests/staticfiles_tests/project/documents/cached/css/fonts/font.eot: -------------------------------------------------------------------------------- 1 | not really a 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/styles.css: -------------------------------------------------------------------------------- 1 | @import url("other.css"); -------------------------------------------------------------------------------- /tests/staticfiles_tests/project/documents/subdir/test.txt: -------------------------------------------------------------------------------- 1 | Can we find this file? 2 | -------------------------------------------------------------------------------- /tests/template_tests/templatetags/broken_tag.py: -------------------------------------------------------------------------------- 1 | from django import Xtemplate # NOQA 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/templates/views/article_archive_month.html: -------------------------------------------------------------------------------- 1 | This template intentionally left blank -------------------------------------------------------------------------------- /tests/templates/views/article_confirm_delete.html: -------------------------------------------------------------------------------- 1 | This template intentionally left blank -------------------------------------------------------------------------------- /tests/utils_tests/test_module/another_good_module.py: -------------------------------------------------------------------------------- 1 | content = 'Another Good Module' 2 | -------------------------------------------------------------------------------- /django/contrib/auth/tests/templates/context_processors/auth_attrs_access.html: -------------------------------------------------------------------------------- 1 | {{ user }} 2 | -------------------------------------------------------------------------------- /docs/_theme/djangodocs-epub/static/docicons-note.png: -------------------------------------------------------------------------------- 1 | ../../djangodocs/static/docicons-note.png -------------------------------------------------------------------------------- /tests/files/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/tests/files/test.png -------------------------------------------------------------------------------- /tests/generic_views/templates/generic_views/about.html: -------------------------------------------------------------------------------- 1 |

About

2 | {% now "U.u" %} 3 | -------------------------------------------------------------------------------- /tests/generic_views/templates/generic_views/book_archive_week.html: -------------------------------------------------------------------------------- 1 | Archive for {{ week }}. -------------------------------------------------------------------------------- /tests/syndication_tests/templates/syndication/title.html: -------------------------------------------------------------------------------- 1 | Title in your templates: {{ obj }} -------------------------------------------------------------------------------- /tests/syndication_tests/templates/syndication/title_context.html: -------------------------------------------------------------------------------- 1 | {{ obj }} (foo is {{ foo }}) -------------------------------------------------------------------------------- /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_form.html: -------------------------------------------------------------------------------- 1 | Article form template. 2 | 3 | {{ form.errors }} 4 | -------------------------------------------------------------------------------- /tests/templates/views/datearticle_archive_month.html: -------------------------------------------------------------------------------- 1 | This template intentionally left blank -------------------------------------------------------------------------------- /tests/urlpatterns_reverse/no_urls.py: -------------------------------------------------------------------------------- 1 | #from django.conf.urls import patterns, url, include 2 | -------------------------------------------------------------------------------- /django/contrib/auth/tests/__init__.py: -------------------------------------------------------------------------------- 1 | # The password for the fixture data users is 'password' 2 | -------------------------------------------------------------------------------- /django/contrib/sites/__init__.py: -------------------------------------------------------------------------------- 1 | default_app_config = 'django.contrib.sites.apps.SitesConfig' 2 | -------------------------------------------------------------------------------- /extras/README.TXT: -------------------------------------------------------------------------------- 1 | This directory contains extra stuff that can improve your Django experience. 2 | -------------------------------------------------------------------------------- /tests/bug639/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/tests/bug639/test.jpg -------------------------------------------------------------------------------- /tests/files/magic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/tests/files/magic.png -------------------------------------------------------------------------------- /tests/files/test1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/tests/files/test1.png -------------------------------------------------------------------------------- /tests/generic_views/templates/generic_views/page_template.html: -------------------------------------------------------------------------------- 1 | This is some content: {{ content }} -------------------------------------------------------------------------------- /tests/migrations/faulty_migrations/import_error/__init__.py: -------------------------------------------------------------------------------- 1 | import fake_python_module # NOQA 2 | -------------------------------------------------------------------------------- /tests/staticfiles_tests/project/documents/cached/styles_insensitive.css: -------------------------------------------------------------------------------- 1 | @IMporT uRL("other.css"); -------------------------------------------------------------------------------- /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/description_context.html: -------------------------------------------------------------------------------- 1 | {{ obj }} (foo is {{ foo }}) -------------------------------------------------------------------------------- /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/template_tests/templatetags/subpackage/echo_invalid.py: -------------------------------------------------------------------------------- 1 | import nonexistent.module # NOQA 2 | -------------------------------------------------------------------------------- /tests/templates/custom_admin/object_history.html: -------------------------------------------------------------------------------- 1 | {% extends "admin/object_history.html" %} 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_no_submodule.py: -------------------------------------------------------------------------------- 1 | # Used to test for modules which don't have submodules. 2 | -------------------------------------------------------------------------------- /django/conf/app_template/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /django/core/files/__init__.py: -------------------------------------------------------------------------------- 1 | from django.core.files.base import File 2 | 3 | __all__ = ['File'] 4 | -------------------------------------------------------------------------------- /docs/_theme/djangodocs-epub/static/docicons-warning.png: -------------------------------------------------------------------------------- 1 | ../../djangodocs/static/docicons-warning.png -------------------------------------------------------------------------------- /tests/syndication_tests/templates/syndication/description.html: -------------------------------------------------------------------------------- 1 | Description in your templates: {{ obj }} -------------------------------------------------------------------------------- /tests/template_tests/templates/test_incl_tag_current_app.html: -------------------------------------------------------------------------------- 1 | {% load custom %}{% current_app %} 2 | -------------------------------------------------------------------------------- /tests/templates/views/urlarticle_form.html: -------------------------------------------------------------------------------- 1 | UrlArticle form template. 2 | 3 | {{ form.errors }} 4 | -------------------------------------------------------------------------------- /tests/view_tests/templates/debug/render_test.html: -------------------------------------------------------------------------------- 1 | {{ foo }}.{{ bar }}.{{ baz }}.{{ STATIC_URL }} 2 | -------------------------------------------------------------------------------- /tests/view_tests/templates/debug/template_exception.html: -------------------------------------------------------------------------------- 1 | {% load debugtags %} 2 | {% go_boom arg %} 3 | -------------------------------------------------------------------------------- /django/conf/app_template/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /django/conf/app_template/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /django/conf/app_template/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /django/contrib/auth/tests/templates/registration/password_reset_complete.html: -------------------------------------------------------------------------------- 1 | Password reset successfully -------------------------------------------------------------------------------- /django/contrib/humanize/__init__.py: -------------------------------------------------------------------------------- 1 | default_app_config = 'django.contrib.humanize.apps.HumanizeConfig' 2 | -------------------------------------------------------------------------------- /django/contrib/sessions/__init__.py: -------------------------------------------------------------------------------- 1 | default_app_config = 'django.contrib.sessions.apps.SessionsConfig' 2 | -------------------------------------------------------------------------------- /docs/_theme/djangodocs-epub/static/docicons-philosophy.png: -------------------------------------------------------------------------------- 1 | ../../djangodocs/static/docicons-philosophy.png -------------------------------------------------------------------------------- /tests/i18n/commands/ignore_dir/ignored.html: -------------------------------------------------------------------------------- 1 | {% load i18n %} 2 | {% trans "This should be ignored." %} 3 | -------------------------------------------------------------------------------- /tests/model_fields/4x8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/tests/model_fields/4x8.png -------------------------------------------------------------------------------- /tests/model_fields/8x4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/tests/model_fields/8x4.png -------------------------------------------------------------------------------- /tests/model_forms/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/tests/model_forms/test.png -------------------------------------------------------------------------------- /tests/model_forms/test2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/tests/model_forms/test2.png -------------------------------------------------------------------------------- /tests/servers/another_app/static/another_app/another_app_static_file.txt: -------------------------------------------------------------------------------- 1 | static file from another_app 2 | -------------------------------------------------------------------------------- /tests/templates/custom_admin/delete_confirmation.html: -------------------------------------------------------------------------------- 1 | {% extends "admin/delete_confirmation.html" %} 2 | -------------------------------------------------------------------------------- /django/apps/__init__.py: -------------------------------------------------------------------------------- 1 | from .config import AppConfig # NOQA 2 | from .registry import apps # NOQA 3 | -------------------------------------------------------------------------------- /django/contrib/admindocs/__init__.py: -------------------------------------------------------------------------------- 1 | default_app_config = 'django.contrib.admindocs.apps.AdminDocsConfig' 2 | -------------------------------------------------------------------------------- /django/contrib/flatpages/__init__.py: -------------------------------------------------------------------------------- 1 | default_app_config = 'django.contrib.flatpages.apps.FlatPagesConfig' 2 | -------------------------------------------------------------------------------- /django/contrib/formtools/__init__.py: -------------------------------------------------------------------------------- 1 | default_app_config = 'django.contrib.formtools.apps.FormToolsConfig' 2 | -------------------------------------------------------------------------------- /django/contrib/redirects/__init__.py: -------------------------------------------------------------------------------- 1 | default_app_config = 'django.contrib.redirects.apps.RedirectsConfig' 2 | -------------------------------------------------------------------------------- /django/contrib/webdesign/__init__.py: -------------------------------------------------------------------------------- 1 | default_app_config = 'django.contrib.webdesign.apps.WebDesignConfig' 2 | -------------------------------------------------------------------------------- /docs/_theme/djangodocs-epub/static/docicons-behindscenes.png: -------------------------------------------------------------------------------- 1 | ../../djangodocs/static/docicons-behindscenes.png -------------------------------------------------------------------------------- /docs/intro/_images/admin01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/docs/intro/_images/admin01.png -------------------------------------------------------------------------------- /docs/intro/_images/admin02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/docs/intro/_images/admin02.png -------------------------------------------------------------------------------- /docs/intro/_images/admin07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/docs/intro/_images/admin07.png -------------------------------------------------------------------------------- /docs/intro/_images/admin09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/docs/intro/_images/admin09.png -------------------------------------------------------------------------------- /docs/intro/_images/admin10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/docs/intro/_images/admin10.png -------------------------------------------------------------------------------- /tests/admin_scripts/simple_app/models.py: -------------------------------------------------------------------------------- 1 | from ..complex_app.models.bar import Bar 2 | 3 | __all__ = ['Bar'] 4 | -------------------------------------------------------------------------------- /tests/apps/default_config_app/__init__.py: -------------------------------------------------------------------------------- 1 | default_app_config = 'apps.default_config_app.apps.CustomConfig' 2 | -------------------------------------------------------------------------------- /tests/fixtures_model_package/sql/book.sql: -------------------------------------------------------------------------------- 1 | INSERT INTO fixtures_model_package_book (name) VALUES ('My Book'); 2 | -------------------------------------------------------------------------------- /tests/fixtures_regress/fixtures/bad_fixture1.unkn: -------------------------------------------------------------------------------- 1 | This data shouldn't load, as it's of an unknown file format. -------------------------------------------------------------------------------- /tests/i18n/commands/templates/xxx_ignored.html: -------------------------------------------------------------------------------- 1 | {% load i18n %} 2 | {% trans "This should be ignored too." %} 3 | -------------------------------------------------------------------------------- /tests/requirements/base.txt: -------------------------------------------------------------------------------- 1 | bcrypt 2 | docutils 3 | numpy 4 | Pillow 5 | PyYAML 6 | pytz > dev 7 | selenium 8 | -------------------------------------------------------------------------------- /django/contrib/contenttypes/__init__.py: -------------------------------------------------------------------------------- 1 | default_app_config = 'django.contrib.contenttypes.apps.ContentTypesConfig' 2 | -------------------------------------------------------------------------------- /django/contrib/staticfiles/__init__.py: -------------------------------------------------------------------------------- 1 | default_app_config = 'django.contrib.staticfiles.apps.StaticFilesConfig' 2 | -------------------------------------------------------------------------------- /django/contrib/syndication/__init__.py: -------------------------------------------------------------------------------- 1 | default_app_config = 'django.contrib.syndication.apps.SyndicationConfig' 2 | -------------------------------------------------------------------------------- /docs/intro/_images/admin03t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/docs/intro/_images/admin03t.png -------------------------------------------------------------------------------- /docs/intro/_images/admin04t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/docs/intro/_images/admin04t.png -------------------------------------------------------------------------------- /docs/intro/_images/admin05t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/docs/intro/_images/admin05t.png -------------------------------------------------------------------------------- /docs/intro/_images/admin06t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/docs/intro/_images/admin06t.png -------------------------------------------------------------------------------- /docs/intro/_images/admin08t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/docs/intro/_images/admin08t.png -------------------------------------------------------------------------------- /docs/intro/_images/admin11t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/docs/intro/_images/admin11t.png -------------------------------------------------------------------------------- /docs/intro/_images/admin12t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/docs/intro/_images/admin12t.png -------------------------------------------------------------------------------- /docs/intro/_images/admin13t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/docs/intro/_images/admin13t.png -------------------------------------------------------------------------------- /docs/intro/_images/admin14t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/docs/intro/_images/admin14t.png -------------------------------------------------------------------------------- /docs/intro/_images/admin15t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/docs/intro/_images/admin15t.png -------------------------------------------------------------------------------- /tests/generic_views/templates/generic_views/list.html: -------------------------------------------------------------------------------- 1 | {% for item in object_list %} 2 | {{ item }} 3 | {% endfor %} -------------------------------------------------------------------------------- /tests/staticfiles_tests/project/documents/cached/url.css: -------------------------------------------------------------------------------- 1 | @import url("https://www.djangoproject.com/m/css/base.css"); -------------------------------------------------------------------------------- /tests/utils_tests/test_module/__init__.py: -------------------------------------------------------------------------------- 1 | class SiteMock(object): 2 | _registry = {} 3 | site = SiteMock() 4 | -------------------------------------------------------------------------------- /docs/_theme/djangodocs/theme.conf: -------------------------------------------------------------------------------- 1 | [theme] 2 | inherit = basic 3 | stylesheet = default.css 4 | pygments_style = trac 5 | -------------------------------------------------------------------------------- /tests/admin_scripts/custom_templates/project_template/additional_dir/extra.py: -------------------------------------------------------------------------------- 1 | # this file uses the {{ extra }} variable 2 | -------------------------------------------------------------------------------- /tests/app_loading/eggs/modelapp.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/tests/app_loading/eggs/modelapp.egg -------------------------------------------------------------------------------- /tests/app_loading/eggs/omelet.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/tests/app_loading/eggs/omelet.egg -------------------------------------------------------------------------------- /tests/generic_views/templates/generic_views/author_list.html: -------------------------------------------------------------------------------- 1 | {% for item in object_list %} 2 | {{ item }} 3 | {% endfor %} -------------------------------------------------------------------------------- /tests/generic_views/templates/generic_views/author_view.html: -------------------------------------------------------------------------------- 1 | This is an alternate template_name_suffix for an {{ author }}. -------------------------------------------------------------------------------- /tests/generic_views/templates/generic_views/book_archive_day.html: -------------------------------------------------------------------------------- 1 | Archive for {{ day }}. Previous day is {{ previous_day }} -------------------------------------------------------------------------------- /tests/generic_views/templates/generic_views/book_list.html: -------------------------------------------------------------------------------- 1 | {% for item in object_list %} 2 | {{ item }} 3 | {% endfor %} -------------------------------------------------------------------------------- /tests/i18n/commands/not_utf8.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/tests/i18n/commands/not_utf8.sample -------------------------------------------------------------------------------- /tests/templates/custom_admin/delete_selected_confirmation.html: -------------------------------------------------------------------------------- 1 | {% extends "admin/delete_selected_confirmation.html" %} 2 | -------------------------------------------------------------------------------- /tests/utils_tests/eggs/test_egg.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/tests/utils_tests/eggs/test_egg.egg -------------------------------------------------------------------------------- /tests/view_tests/media/file.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/tests/view_tests/media/file.txt.gz -------------------------------------------------------------------------------- /django/contrib/auth/tests/templates/context_processors/auth_attrs_messages.html: -------------------------------------------------------------------------------- 1 | {% for m in messages %}{{ m }}{% endfor %} 2 | -------------------------------------------------------------------------------- /django/contrib/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/admin_scripts/custom_templates/project_template/additional_dir/Procfile: -------------------------------------------------------------------------------- 1 | # some file for {{ project_name }} test project -------------------------------------------------------------------------------- /tests/app_loading/eggs/brokenapp.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/tests/app_loading/eggs/brokenapp.egg -------------------------------------------------------------------------------- /tests/app_loading/eggs/nomodelapp.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/tests/app_loading/eggs/nomodelapp.egg -------------------------------------------------------------------------------- /tests/generic_views/templates/generic_views/author_objects.html: -------------------------------------------------------------------------------- 1 | {% for item in object_list %} 2 | {{ item }} 3 | {% endfor %} -------------------------------------------------------------------------------- /tests/staticfiles_tests/project/documents/cached/css/window.css: -------------------------------------------------------------------------------- 1 | body { 2 | background: #d3d6d8 url("img/window.png"); 3 | } -------------------------------------------------------------------------------- /tests/template_tests/eggs/tagsegg.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/tests/template_tests/eggs/tagsegg.egg -------------------------------------------------------------------------------- /tests/template_tests/templates/response.html: -------------------------------------------------------------------------------- 1 | This is where you can find the snark: {% url "snark" %} 2 | {% now "U.u" %} 3 | -------------------------------------------------------------------------------- /tests/utils_tests/archives/foobar.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/tests/utils_tests/archives/foobar.zip -------------------------------------------------------------------------------- /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/contrib/gis/tests/data/invalid/emptypoints.dbf: -------------------------------------------------------------------------------- 1 | _A WFIDN 0 -------------------------------------------------------------------------------- /django/contrib/gis/tests/data/texas.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/gis/tests/data/texas.dbf -------------------------------------------------------------------------------- /django/forms/extras/__init__.py: -------------------------------------------------------------------------------- 1 | from django.forms.extras.widgets import SelectDateWidget 2 | 3 | __all__ = ['SelectDateWidget'] 4 | -------------------------------------------------------------------------------- /docs/topics/http/_images/middleware.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/docs/topics/http/_images/middleware.pdf -------------------------------------------------------------------------------- /tests/admin_scripts/custom_templates/project_template/additional_dir/requirements.txt: -------------------------------------------------------------------------------- 1 | # some file for {{ project_name }} test project -------------------------------------------------------------------------------- /tests/fixtures/fixtures/fixture5.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/tests/fixtures/fixtures/fixture5.json.gz -------------------------------------------------------------------------------- /tests/utils_tests/archives/foobar.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/tests/utils_tests/archives/foobar.tar.gz -------------------------------------------------------------------------------- /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/contrib/auth/tests/templates/registration/password_reset_email.html: -------------------------------------------------------------------------------- 1 | {{ protocol }}://{{ domain }}/reset/{{ uid }}/{{ token }}/ 2 | -------------------------------------------------------------------------------- /django/contrib/formtools/tests/wizard/wizardtests/templates/other_wizard_form.html: -------------------------------------------------------------------------------- 1 | {% extends "formtools/wizard/wizard_form.html" %} 2 | -------------------------------------------------------------------------------- /django/db/backends/signals.py: -------------------------------------------------------------------------------- 1 | from django.dispatch import Signal 2 | 3 | connection_created = Signal(providing_args=["connection"]) 4 | -------------------------------------------------------------------------------- /django/db/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | from .migration import Migration, swappable_dependency # NOQA 2 | from .operations import * # NOQA 3 | -------------------------------------------------------------------------------- /docs/internals/_images/triage_process.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/docs/internals/_images/triage_process.pdf -------------------------------------------------------------------------------- /docs/topics/http/generic-views.txt: -------------------------------------------------------------------------------- 1 | ============= 2 | Generic views 3 | ============= 4 | 5 | See :doc:`/ref/class-based-views/index`. 6 | -------------------------------------------------------------------------------- /tests/admin_scripts/complex_app/models/__init__.py: -------------------------------------------------------------------------------- 1 | from .bar import Bar 2 | from .foo import Foo 3 | 4 | __all__ = ['Foo', 'Bar'] 5 | -------------------------------------------------------------------------------- /tests/admin_scripts/custom_templates/project_template/project_name/settings.py: -------------------------------------------------------------------------------- 1 | # Django settings for {{ project_name }} test project. 2 | -------------------------------------------------------------------------------- /tests/comment_tests/custom_comments/forms.py: -------------------------------------------------------------------------------- 1 | from django import forms 2 | 3 | 4 | class CustomCommentForm(forms.Form): 5 | pass 6 | -------------------------------------------------------------------------------- /tests/fixtures/fixtures/fixture4.json.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/tests/fixtures/fixtures/fixture4.json.zip -------------------------------------------------------------------------------- /tests/fixtures/fixtures/fixture5.json.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/tests/fixtures/fixtures/fixture5.json.zip -------------------------------------------------------------------------------- /tests/generic_views/templates/generic_views/apple_detail.html: -------------------------------------------------------------------------------- 1 | This is a {% if tasty %}tasty {% endif %}{{ apple.color }} apple{{ extra }} -------------------------------------------------------------------------------- /tests/proxy_model_inheritance/app2/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | 4 | class NiceModel(models.Model): 5 | pass 6 | -------------------------------------------------------------------------------- /tests/template_tests/templates/included_base.html: -------------------------------------------------------------------------------- 1 | {% block content %} 2 | {% block error_here %}{% endblock %} 3 | {% endblock %} 4 | -------------------------------------------------------------------------------- /tests/template_tests/templates/ssi include with spaces.html: -------------------------------------------------------------------------------- 1 | This is for testing an ssi include with spaces in its name. {{ test }} 2 | -------------------------------------------------------------------------------- /tests/utils_tests/archives/foobar.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/tests/utils_tests/archives/foobar.tar.bz2 -------------------------------------------------------------------------------- /django/conf/locale/af/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/conf/locale/af/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/ar/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/conf/locale/ar/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/az/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/conf/locale/az/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/be/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/conf/locale/be/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/bg/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/conf/locale/bg/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/bn/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/conf/locale/bn/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/br/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/conf/locale/br/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/bs/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/conf/locale/bs/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/ca/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/conf/locale/ca/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/cs/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/conf/locale/cs/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/cy/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/conf/locale/cy/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/da/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/conf/locale/da/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/de/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/conf/locale/de/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/el/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/conf/locale/el/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/en/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/conf/locale/en/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/eo/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/conf/locale/eo/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/es/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/conf/locale/es/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/et/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/conf/locale/et/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/eu/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/conf/locale/eu/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/fa/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/conf/locale/fa/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/fi/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/conf/locale/fi/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/fr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/conf/locale/fr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/fy/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/conf/locale/fy/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/ga/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/conf/locale/ga/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/gl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/conf/locale/gl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/he/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/conf/locale/he/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/hi/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/conf/locale/hi/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/hr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/conf/locale/hr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/hu/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/conf/locale/hu/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/ia/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/conf/locale/ia/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/id/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/conf/locale/id/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/is/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/conf/locale/is/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/it/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/conf/locale/it/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/ja/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/conf/locale/ja/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/ka/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/conf/locale/ka/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/kk/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/conf/locale/kk/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/km/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/conf/locale/km/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/kn/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/conf/locale/kn/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/ko/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/conf/locale/ko/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/lb/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/conf/locale/lb/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/lt/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/conf/locale/lt/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/lv/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/conf/locale/lv/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/mk/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/conf/locale/mk/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/ml/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/conf/locale/ml/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/mn/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/conf/locale/mn/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/my/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/conf/locale/my/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/nb/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/conf/locale/nb/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/ne/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/conf/locale/ne/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/nl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/conf/locale/nl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/nn/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/conf/locale/nn/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/os/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/conf/locale/os/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/pa/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/conf/locale/pa/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/pl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/conf/locale/pl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/pt/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/conf/locale/pt/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/ro/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/conf/locale/ro/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/ru/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/conf/locale/ru/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/sk/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/conf/locale/sk/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/sl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/conf/locale/sl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/sq/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/conf/locale/sq/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/sr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/conf/locale/sr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/sv/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/conf/locale/sv/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/sw/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/conf/locale/sw/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/ta/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/conf/locale/ta/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/te/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/conf/locale/te/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/th/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/conf/locale/th/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/tr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/conf/locale/tr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/tt/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/conf/locale/tt/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/udm/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/conf/locale/udm/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/uk/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/conf/locale/uk/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/ur/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/conf/locale/ur/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/vi/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/conf/locale/vi/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/sitemaps/models.py: -------------------------------------------------------------------------------- 1 | # This file is required to pretend sitemaps has models. 2 | # Otherwise test models cannot be registered. 3 | -------------------------------------------------------------------------------- /docs/_theme/djangodocs/static/default.css: -------------------------------------------------------------------------------- 1 | @import url(reset-fonts-grids.css); 2 | @import url(djangodocs.css); 3 | @import url(homepage.css); -------------------------------------------------------------------------------- /tests/admin_scripts/custom_templates/project_template/additional_dir/additional_file.py: -------------------------------------------------------------------------------- 1 | # some file for {{ project_name }} test project 2 | -------------------------------------------------------------------------------- /tests/comment_tests/custom_comments/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | 4 | class CustomComment(models.Model): 5 | pass 6 | -------------------------------------------------------------------------------- /tests/generic_views/templates/generic_views/book_archive.html: -------------------------------------------------------------------------------- 1 | Archive of books from {{ date_list }}. {{ object_list|length }} books found. 2 | -------------------------------------------------------------------------------- /tests/generic_views/templates/generic_views/book_archive_year.html: -------------------------------------------------------------------------------- 1 | Archive of books from {{ year }}. {{ object_list|length }} books found. 2 | -------------------------------------------------------------------------------- /tests/urlpatterns_reverse/erroneous_views_module.py: -------------------------------------------------------------------------------- 1 | import non_existent # NOQA 2 | 3 | 4 | def erroneous_view(request): 5 | pass 6 | -------------------------------------------------------------------------------- /django/conf/locale/en_GB/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/conf/locale/en_GB/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/es_AR/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/conf/locale/es_AR/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/es_MX/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/conf/locale/es_MX/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/es_VE/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/conf/locale/es_VE/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/pt_BR/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/conf/locale/pt_BR/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/zh_CN/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/conf/locale/zh_CN/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/zh_TW/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/conf/locale/zh_TW/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/formtools/models.py: -------------------------------------------------------------------------------- 1 | # This file is required to pretend formtools has models. 2 | # Otherwise test models cannot be registered. 3 | -------------------------------------------------------------------------------- /django/contrib/gis/tests/data/cities/cities.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/gis/tests/data/cities/cities.dbf -------------------------------------------------------------------------------- /django/contrib/gis/tests/data/cities/cities.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/gis/tests/data/cities/cities.shp -------------------------------------------------------------------------------- /django/contrib/gis/tests/data/cities/cities.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/gis/tests/data/cities/cities.shx -------------------------------------------------------------------------------- /docs/_theme/djangodocs/static/docicons-note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/docs/_theme/djangodocs/static/docicons-note.png -------------------------------------------------------------------------------- /docs/ref/contrib/admin/_images/user_actions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/docs/ref/contrib/admin/_images/user_actions.png -------------------------------------------------------------------------------- /tests/bug8245/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | 4 | class Story(models.Model): 5 | title = models.CharField(max_length=10) 6 | -------------------------------------------------------------------------------- /tests/migrate_signals/models.py: -------------------------------------------------------------------------------- 1 | # This module has to exist, otherwise pre/post_migrate aren't sent for the 2 | # migrate_signals application. 3 | -------------------------------------------------------------------------------- /tests/servers/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | 4 | class Person(models.Model): 5 | name = models.CharField(max_length=256) 6 | -------------------------------------------------------------------------------- /django/conf/locale/sr_Latn/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/conf/locale/sr_Latn/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/zh_Hans/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/conf/locale/zh_Hans/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/conf/locale/zh_Hant/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/conf/locale/zh_Hant/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/admin/static/admin/img/icon-no.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/admin/static/admin/img/icon-no.gif -------------------------------------------------------------------------------- /django/contrib/admin/static/admin/img/icon-yes.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/admin/static/admin/img/icon-yes.gif -------------------------------------------------------------------------------- /django/contrib/admin/static/admin/img/nav-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/admin/static/admin/img/nav-bg.gif -------------------------------------------------------------------------------- /django/contrib/gis/locale/ar/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/gis/locale/ar/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/gis/locale/az/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/gis/locale/az/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/gis/locale/be/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/gis/locale/be/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/gis/locale/bg/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/gis/locale/bg/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/gis/locale/bn/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/gis/locale/bn/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/gis/locale/br/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/gis/locale/br/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/gis/locale/bs/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/gis/locale/bs/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/gis/locale/ca/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/gis/locale/ca/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/gis/locale/cs/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/gis/locale/cs/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/gis/locale/cy/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/gis/locale/cy/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/gis/locale/da/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/gis/locale/da/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/gis/locale/de/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/gis/locale/de/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/gis/locale/el/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/gis/locale/el/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/gis/locale/en/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/gis/locale/en/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/gis/locale/eo/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/gis/locale/eo/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/gis/locale/es/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/gis/locale/es/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/gis/locale/et/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/gis/locale/et/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/gis/locale/eu/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/gis/locale/eu/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/gis/locale/fa/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/gis/locale/fa/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/gis/locale/fi/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/gis/locale/fi/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/gis/locale/fr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/gis/locale/fr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/gis/locale/fy/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/gis/locale/fy/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/gis/locale/ga/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/gis/locale/ga/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/gis/locale/gl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/gis/locale/gl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/gis/locale/he/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/gis/locale/he/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/gis/locale/hi/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/gis/locale/hi/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/gis/locale/hr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/gis/locale/hr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/gis/locale/hu/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/gis/locale/hu/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/gis/locale/ia/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/gis/locale/ia/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/gis/locale/id/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/gis/locale/id/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/gis/locale/is/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/gis/locale/is/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/gis/locale/it/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/gis/locale/it/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/gis/locale/ja/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/gis/locale/ja/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/gis/locale/ka/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/gis/locale/ka/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/gis/locale/kk/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/gis/locale/kk/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/gis/locale/km/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/gis/locale/km/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/gis/locale/kn/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/gis/locale/kn/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/gis/locale/ko/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/gis/locale/ko/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/gis/locale/lt/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/gis/locale/lt/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/gis/locale/lv/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/gis/locale/lv/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/gis/locale/mk/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/gis/locale/mk/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/gis/locale/ml/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/gis/locale/ml/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/gis/locale/mn/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/gis/locale/mn/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/gis/locale/nb/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/gis/locale/nb/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/gis/locale/ne/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/gis/locale/ne/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/gis/locale/nl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/gis/locale/nl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/gis/locale/nn/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/gis/locale/nn/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/gis/locale/pa/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/gis/locale/pa/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/gis/locale/pl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/gis/locale/pl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/gis/locale/pt/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/gis/locale/pt/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/gis/locale/ro/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/gis/locale/ro/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/gis/locale/ru/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/gis/locale/ru/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/gis/locale/sk/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/gis/locale/sk/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/gis/locale/sl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/gis/locale/sl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/gis/locale/sq/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/gis/locale/sq/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/gis/locale/sr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/gis/locale/sr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/gis/locale/sv/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/gis/locale/sv/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/gis/locale/sw/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/gis/locale/sw/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/gis/locale/ta/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/gis/locale/ta/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/gis/locale/te/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/gis/locale/te/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/gis/locale/th/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/gis/locale/th/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/gis/locale/tr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/gis/locale/tr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/gis/locale/tt/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/gis/locale/tt/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/gis/locale/uk/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/gis/locale/uk/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/gis/locale/ur/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/gis/locale/ur/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/gis/locale/vi/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/gis/locale/vi/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/gis/tests/data/ch-city/ch-city.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/gis/tests/data/ch-city/ch-city.dbf -------------------------------------------------------------------------------- /django/contrib/gis/tests/data/ch-city/ch-city.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/gis/tests/data/ch-city/ch-city.shp -------------------------------------------------------------------------------- /django/contrib/gis/tests/data/ch-city/ch-city.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/gis/tests/data/ch-city/ch-city.shx -------------------------------------------------------------------------------- /docs/_theme/djangodocs/search.html: -------------------------------------------------------------------------------- 1 | {% extends "basic/search.html" %} 2 | {% block bodyclass %}{% endblock %} 3 | {% block sidebarwrapper %}{% endblock %} -------------------------------------------------------------------------------- /docs/_theme/djangodocs/static/docicons-warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/docs/_theme/djangodocs/static/docicons-warning.png -------------------------------------------------------------------------------- /docs/ref/contrib/admin/_images/article_actions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/docs/ref/contrib/admin/_images/article_actions.png -------------------------------------------------------------------------------- /docs/ref/contrib/admin/_images/flatfiles_admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/docs/ref/contrib/admin/_images/flatfiles_admin.png -------------------------------------------------------------------------------- /docs/ref/contrib/admin/_images/raw_id_fields.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/docs/ref/contrib/admin/_images/raw_id_fields.png -------------------------------------------------------------------------------- /tests/admin_scripts/custom_templates/project_template/ticket-18091-non-ascii-template.txt: -------------------------------------------------------------------------------- 1 | Some non-ASCII text for testing ticket #18091: 2 | üäö € 3 | -------------------------------------------------------------------------------- /tests/i18n/other/locale/de/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/tests/i18n/other/locale/de/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /tests/i18n/other/locale/fr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/tests/i18n/other/locale/fr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /tests/utils_tests/locale/nl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/tests/utils_tests/locale/nl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /tests/view_tests/locale/de/LC_MESSAGES/djangojs.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/tests/view_tests/locale/de/LC_MESSAGES/djangojs.mo -------------------------------------------------------------------------------- /tests/view_tests/locale/es/LC_MESSAGES/djangojs.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/tests/view_tests/locale/es/LC_MESSAGES/djangojs.mo -------------------------------------------------------------------------------- /tests/view_tests/locale/fr/LC_MESSAGES/djangojs.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/tests/view_tests/locale/fr/LC_MESSAGES/djangojs.mo -------------------------------------------------------------------------------- /tests/view_tests/locale/nl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/tests/view_tests/locale/nl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /tests/view_tests/locale/ru/LC_MESSAGES/djangojs.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/tests/view_tests/locale/ru/LC_MESSAGES/djangojs.mo -------------------------------------------------------------------------------- /.hgignore: -------------------------------------------------------------------------------- 1 | syntax:glob 2 | 3 | *.egg-info 4 | *.pot 5 | *.py[co] 6 | __pycache__ 7 | docs/_build/ 8 | tests/coverage_html/ 9 | tests/.coverage 10 | -------------------------------------------------------------------------------- /django/contrib/admin/locale/af/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/admin/locale/af/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/admin/locale/ar/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/admin/locale/ar/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/admin/locale/az/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/admin/locale/az/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/admin/locale/be/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/admin/locale/be/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/admin/locale/bg/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/admin/locale/bg/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/admin/locale/bn/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/admin/locale/bn/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/admin/locale/br/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/admin/locale/br/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/admin/locale/bs/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/admin/locale/bs/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/admin/locale/ca/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/admin/locale/ca/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/admin/locale/cs/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/admin/locale/cs/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/admin/locale/cy/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/admin/locale/cy/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/admin/locale/da/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/admin/locale/da/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/admin/locale/de/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/admin/locale/de/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/admin/locale/el/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/admin/locale/el/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/admin/locale/en/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/admin/locale/en/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/admin/locale/eo/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/admin/locale/eo/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/admin/locale/es/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/admin/locale/es/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/admin/locale/et/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/admin/locale/et/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/admin/locale/eu/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/admin/locale/eu/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/admin/locale/fa/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/admin/locale/fa/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/admin/locale/fi/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/admin/locale/fi/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/admin/locale/fr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/admin/locale/fr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/admin/locale/fy/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/admin/locale/fy/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/admin/locale/ga/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/admin/locale/ga/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/admin/locale/gl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/admin/locale/gl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/admin/locale/he/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/admin/locale/he/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/admin/locale/hi/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/admin/locale/hi/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/admin/locale/hr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/admin/locale/hr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/admin/locale/hu/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/admin/locale/hu/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/admin/locale/ia/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/admin/locale/ia/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/admin/locale/id/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/admin/locale/id/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/admin/locale/is/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/admin/locale/is/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/admin/locale/it/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/admin/locale/it/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/admin/locale/ja/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/admin/locale/ja/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/admin/locale/ka/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/admin/locale/ka/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/admin/locale/kk/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/admin/locale/kk/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/admin/locale/km/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/admin/locale/km/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/admin/locale/kn/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/admin/locale/kn/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/admin/locale/ko/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/admin/locale/ko/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/admin/locale/lb/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/admin/locale/lb/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/admin/locale/lt/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/admin/locale/lt/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/admin/locale/lv/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/admin/locale/lv/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/admin/locale/mk/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/admin/locale/mk/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/admin/locale/ml/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/admin/locale/ml/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/admin/locale/mn/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/admin/locale/mn/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/admin/locale/my/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/admin/locale/my/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/admin/locale/nb/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/admin/locale/nb/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/admin/locale/ne/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/admin/locale/ne/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/admin/locale/nl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/admin/locale/nl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/admin/locale/nn/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/admin/locale/nn/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/admin/locale/os/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/admin/locale/os/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/admin/locale/pa/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/admin/locale/pa/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/admin/locale/pl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/admin/locale/pl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/admin/locale/pt/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/admin/locale/pt/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/admin/locale/ro/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/admin/locale/ro/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/admin/locale/ru/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/admin/locale/ru/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/admin/locale/sk/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/admin/locale/sk/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/admin/locale/sl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/admin/locale/sl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/admin/locale/sq/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/admin/locale/sq/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/admin/locale/sr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/admin/locale/sr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/admin/locale/sv/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/admin/locale/sv/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/admin/locale/sw/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/admin/locale/sw/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/admin/locale/ta/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/admin/locale/ta/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/admin/locale/te/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/admin/locale/te/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/admin/locale/th/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/admin/locale/th/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/admin/locale/tr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/admin/locale/tr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/admin/locale/tt/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/admin/locale/tt/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/admin/locale/uk/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/admin/locale/uk/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/admin/locale/ur/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/admin/locale/ur/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/admin/locale/vi/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/admin/locale/vi/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/admin/static/admin/img/default-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/admin/static/admin/img/default-bg.gif -------------------------------------------------------------------------------- /django/contrib/admin/static/admin/img/icon_alert.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/admin/static/admin/img/icon_alert.gif -------------------------------------------------------------------------------- /django/contrib/admin/static/admin/img/icon_clock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/admin/static/admin/img/icon_clock.gif -------------------------------------------------------------------------------- /django/contrib/admin/static/admin/img/icon_error.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/admin/static/admin/img/icon_error.gif -------------------------------------------------------------------------------- /django/contrib/auth/locale/af/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/auth/locale/af/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/auth/locale/ar/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/auth/locale/ar/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/auth/locale/az/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/auth/locale/az/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/auth/locale/be/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/auth/locale/be/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/auth/locale/bg/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/auth/locale/bg/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/auth/locale/bn/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/auth/locale/bn/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/auth/locale/br/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/auth/locale/br/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/auth/locale/bs/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/auth/locale/bs/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/auth/locale/ca/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/auth/locale/ca/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/auth/locale/cs/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/auth/locale/cs/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/auth/locale/cy/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/auth/locale/cy/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/auth/locale/da/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/auth/locale/da/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/auth/locale/de/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/auth/locale/de/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/auth/locale/el/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/auth/locale/el/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/auth/locale/en/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/auth/locale/en/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/auth/locale/eo/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/auth/locale/eo/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/auth/locale/es/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/auth/locale/es/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/auth/locale/et/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/auth/locale/et/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/auth/locale/eu/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/auth/locale/eu/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/auth/locale/fa/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/auth/locale/fa/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/auth/locale/fi/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/auth/locale/fi/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/auth/locale/fr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/auth/locale/fr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/auth/locale/fy/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/auth/locale/fy/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/auth/locale/ga/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/auth/locale/ga/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/auth/locale/gl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/auth/locale/gl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/auth/locale/he/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/auth/locale/he/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/auth/locale/hi/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/auth/locale/hi/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/auth/locale/hr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/auth/locale/hr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/auth/locale/hu/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/auth/locale/hu/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/auth/locale/ia/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/auth/locale/ia/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/auth/locale/id/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/auth/locale/id/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/auth/locale/is/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/auth/locale/is/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/auth/locale/it/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/auth/locale/it/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/auth/locale/ja/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/auth/locale/ja/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/auth/locale/ka/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/auth/locale/ka/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/auth/locale/kk/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/auth/locale/kk/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/auth/locale/km/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/auth/locale/km/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/auth/locale/kn/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/auth/locale/kn/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/auth/locale/ko/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/auth/locale/ko/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/auth/locale/lt/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/auth/locale/lt/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/auth/locale/lv/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/auth/locale/lv/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/auth/locale/mk/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/auth/locale/mk/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/auth/locale/ml/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/auth/locale/ml/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/auth/locale/mn/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/auth/locale/mn/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/auth/locale/my/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/auth/locale/my/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/auth/locale/nb/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/auth/locale/nb/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/auth/locale/ne/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/auth/locale/ne/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/auth/locale/nl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/auth/locale/nl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/auth/locale/nn/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/auth/locale/nn/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/auth/locale/os/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/auth/locale/os/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/auth/locale/pa/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/auth/locale/pa/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/auth/locale/pl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/auth/locale/pl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/auth/locale/pt/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/auth/locale/pt/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/auth/locale/ro/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/auth/locale/ro/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/auth/locale/ru/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/auth/locale/ru/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/auth/locale/sk/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/auth/locale/sk/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/auth/locale/sl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/auth/locale/sl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/auth/locale/sq/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/auth/locale/sq/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/auth/locale/sr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/auth/locale/sr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/auth/locale/sv/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/auth/locale/sv/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/auth/locale/sw/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/auth/locale/sw/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/auth/locale/ta/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/auth/locale/ta/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/auth/locale/te/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/auth/locale/te/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/auth/locale/th/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/auth/locale/th/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/auth/locale/tr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/auth/locale/tr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/auth/locale/tt/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/auth/locale/tt/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/auth/locale/uk/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/auth/locale/uk/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django/contrib/auth/locale/ur/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/variable/django/master/django/contrib/auth/locale/ur/LC_MESSAGES/django.mo --------------------------------------------------------------------------------