﻿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
26631	Tutorial Part 6: Lacking import static for static files	donkeyDau	nobody	"In the tutorial in step 6 (https://docs.djangoproject.com/en/1.9/intro/tutorial06/) the following code is used:
{{{
{% load staticfiles %}

<link rel=""stylesheet"" type=""text/css"" href=""{% static 'polls/style.css' %}"" />
}}}
It wouldn't work when I tried. I figured out that I have to import

{{{
from django.conf.urls.static import static
}}}
to get it work properly."	Bug	closed	Documentation	1.9	Normal	worksforme	tutorial		Unreviewed	0	0	0	0	0	0
