﻿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
30576	Code not working on Django Tutorial part 6.	Javier Carrasco	nobody	"In the section ""Adding a background-image"" (Part 6 of Django tutorial) teaches how to add a background image by editing style.css as follows:
{{{#!css
  body {
    background: white url(""images/background.gif"") no-repeat;
  }
}}}
However, this won't work because it doesn't reference the actual location of the image file. The following change fixes the issue (add **''/static/''**):
{{{#!css
  body {
    background: white url(""/static/images/background.gif"") no-repeat;
  }
}}}"	Bug	closed	Documentation	dev	Normal	worksforme	django, tutorial, background, image		Unreviewed	0	0	0	0	1	0
