- Language: en
31 results for dir in the development version
-
Django 1.7 release notes
- … dirs parameter which is a list or tuple to override TEMPLATE_DIRS : django.template.loader.get_template() django.template.loader.select …
-
Django 1.2 release notes
- … dir__() . If you used LazyObject in your own code and implemented the get_all_members …
-
The form rendering API
- … DIRS=True . Adding the built-in templates directory in DIRS of one of your template …
-
Django 1.10 release notes
- … DIRS TEMPLATE_LOADERS TEMPLATE_STRING_IF_INVALID The backwards compatibility alias django.template.loader.BaseLoader is removed. Django …
-
Fixtures
- … DIRS setting In the literal path named by the fixture Django will load any and all fixtures …
-
How to provide initial data for models
- … DIRS setting. To completely prevent default search from happening, use an absolute path to specify …
-
Django at a glance
- … DIRS . If a template doesn’t exist in the first directory, it checks the second …
-
Django 3.1 release notes
- … DIRS setting now supports pathlib.Path . Cache The cache_control() decorator and patch_cache_control() method …
-
Django 3.2.1 release notes
- … DIRS setting with a list of 2-tuples of (prefix, path) ( #32665 ). Fixed a long …
-
Model field reference
- … DIR , "images" ) class MyModel ( models . Model ): file = models . FilePathField ( path = images_path ) FilePathField …