- Language: en
24 results for dir in version 1.10
-
Settings
- … DIR . This setting also determines the default permissions for collected static files when using the collectstatic …
-
The Django template language: for Python programmers
- … DIRS option. The DIRS option Tell Django what your template directories are by using the DIRS …
-
Django 1.8 release notes
- … dirs argument of template-finding functions The following functions will no longer accept a dirs …
-
Templates
- … DIRS' : [], 'APP_DIRS' : True , 'OPTIONS' : { # ... some options here ... }, }, ] BACKEND is a dotted …
-
Writing your first Django app, part 7
- … DIRS' : [ os . path . join ( BASE_DIR , 'templates' )], 'APP_DIRS' : True …
-
Upgrading templates to Django 1.8
- … DIRS' : [ # insert your TEMPLATE_DIRS here ], 'APP_DIRS' : True , 'OPTIONS' : { 'context …
-
Django Deprecation Timeline
- … dirs argument for template loaders will be removed: django.template.loaders.base.Loader.get_template() django.template.loaders.cached.Loader.cache_key() django.template.loaders.cached.Loader.get_template() django.template.loaders.cached.Loader.get …
-
Managing static files (e.g. images, JavaScript, CSS)
- … DIRS = [ os . path . join ( BASE_DIR , "static" ), '/var/www/static/' , ] See the documentation …
-
The staticfiles app
- … DIRS STATICFILES_STORAGE STATICFILES_FINDERS Management Commands django.contrib.staticfiles exposes three management commands. collectstatic django-admin …
-
Django 1.2 release notes
- … dir__() . If you used LazyObject in your own code and implemented the get_all_members …