diff options
| author | django-bot <ops@djangoproject.com> | 2023-02-28 20:53:28 +0100 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2023-03-01 13:03:56 +0100 |
| commit | 14459f80ee3a9e005989db37c26fd13bb6d2fab2 (patch) | |
| tree | eb62429ed696ed3a5389f3a676aecfc6d15a99cc /docs/howto/static-files | |
| parent | 6015bab80e28aef2669f6fac53423aa65f70cb08 (diff) | |
| download | django-14459f80ee3a9e005989db37c26fd13bb6d2fab2.tar.gz | |
Fixed #34140 -- Reformatted code blocks in docs with blacken-docs.
Diffstat (limited to 'docs/howto/static-files')
| -rw-r--r-- | docs/howto/static-files/index.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/howto/static-files/index.txt b/docs/howto/static-files/index.txt index 2f82cf821d..b4cfd03df7 100644 --- a/docs/howto/static-files/index.txt +++ b/docs/howto/static-files/index.txt @@ -16,7 +16,7 @@ Configuring static files #. In your settings file, define :setting:`STATIC_URL`, for example:: - STATIC_URL = 'static/' + STATIC_URL = "static/" #. In your templates, use the :ttag:`static` template tag to build the URL for the given relative path using the configured ``staticfiles`` @@ -54,7 +54,7 @@ settings file where Django will also look for static files. For example:: STATICFILES_DIRS = [ BASE_DIR / "static", - '/var/www/static/', + "/var/www/static/", ] See the documentation for the :setting:`STATICFILES_FINDERS` setting for |
