From 25ee9b49139eec49ac2a44439f86fc1006e88a58 Mon Sep 17 00:00:00 2001 From: Jannis Leidel Date: Thu, 16 Jun 2011 15:28:12 +0000 Subject: [PATCH] [1.3.X] Fixed #16273 -- Fixed typo in staticfiles docs. Thanks, BernhardEssl. Backport from trunk (r16407). git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.3.X@16409 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/howto/static-files.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/howto/static-files.txt b/docs/howto/static-files.txt index 215b927f6f735..3d2a37e972882 100644 --- a/docs/howto/static-files.txt +++ b/docs/howto/static-files.txt @@ -68,7 +68,7 @@ Basic usage .. code-block:: html+django - See :ref:`staticfiles-in-templates` for more details, including an alternate method using a template tag. @@ -167,7 +167,7 @@ Once that's done, you can refer to :setting:`STATIC_URL` in your templates: .. code-block:: html+django - If ``{{ STATIC_URL }}`` isn't working in your template, you're probably not using :class:`~django.template.RequestContext` when rendering the template.