diff options
author | Stephen Finucane <stephenfinucane@hotmail.com> | 2015-04-07 22:20:53 +0100 |
---|---|---|
committer | Jeremy Kerr <jk@ozlabs.org> | 2015-05-03 13:46:52 +0800 |
commit | d4a2c1f8792f52fec0c881ab38c91635840a50c0 (patch) | |
tree | f08cb31b6c2ad4a80bacbf9ba8a2b8b2b2cdca6d /htdocs | |
parent | c641660e041fdf932bad89681c167328ee85249a (diff) | |
download | patchwork-d4a2c1f8792f52fec0c881ab38c91635840a50c0.tar patchwork-d4a2c1f8792f52fec0c881ab38c91635840a50c0.tar.gz |
Integrate 'django.contrib.staticfiles'
Rather than providing a custom solution for serving static files, use
the solution provided in the upstream Django source.
This allows us to remove the top-level 'urls.py' file.
Signed-off-by: Stephen Finucane <stephenfinucane@hotmail.com>
Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
Diffstat (limited to 'htdocs')
-rw-r--r-- | htdocs/css/style.css | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/htdocs/css/style.css b/htdocs/css/style.css index 87e0cd5..e5bbc75 100644 --- a/htdocs/css/style.css +++ b/htdocs/css/style.css @@ -14,7 +14,7 @@ body { #title { - background: url('/images/title-background.png') top left repeat-x; + background: url('/static/images/title-background.png') top left repeat-x; background-color: #786fb4; margin: 0px; padding-top: 0.1em; |