﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
17809	Admin static files not loading with dev server	jrhorn424@…	nobody	"{{{
Django version 1.4b1
}}}

I noticed that the ""add"" buttons inside model pages lacked the ""plus"" icon next to ""add"". Starting `runserver_plus` from `django-extensions` seems to indicate the problem might be with `django.contrib.staticfiles`.

Server log:
{{{
127.0.0.1 - - [01/Mar/2012 13:35:52] ""GET /admin/survey/category/ HTTP/1.1"" 200 -
127.0.0.1 - - [01/Mar/2012 13:35:52] ""GET /admin/jsi18n/ HTTP/1.1"" 200 -
127.0.0.1 - - [01/Mar/2012 13:35:53] ""GET /static/admin/img/admin/nav-bg-reverse.gif HTTP/1.1"" 404 -
127.0.0.1 - - [01/Mar/2012 13:35:53] ""GET /static/admin/img/admin/tool-left.gif HTTP/1.1"" 404 -
127.0.0.1 - - [01/Mar/2012 13:35:53] ""GET /static/admin/img/admin/tooltag-add.gif HTTP/1.1"" 404 -
127.0.0.1 - - [01/Mar/2012 13:35:53] ""GET /static/admin/img/admin/default-bg.gif HTTP/1.1"" 404 -
127.0.0.1 - - [01/Mar/2012 13:35:53] ""GET /favicon.ico HTTP/1.1"" 404 -
}}}

Relevant settings:
{{{
# Absolute path to the directory static files should be collected to.
# Don't put anything in this directory yourself; store your static files
# in apps' ""static/"" subdirectories and in STATICFILES_DIRS.
# Example: ""/home/media/media.lawrence.com/static/""
STATIC_ROOT = os.path.join(PROJECT_ROOT, 'static')

# URL prefix for static files.
# Example: ""http://media.lawrence.com/static/""
STATIC_URL = '/static/'

<snip>

STATICFILES_FINDERS = (
    'django.contrib.staticfiles.finders.FileSystemFinder',
    'django.contrib.staticfiles.finders.AppDirectoriesFinder',
)
}}}"	Bug	closed	contrib.staticfiles	1.4-beta-1	Normal	worksforme	admin, staticfiles		Unreviewed	0	0	0	0	0	1
