﻿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
26288	Support relative imports in django.conf.urls.include	Chris Lamb	nobody	"For example, within `myproject.urls`:

{{{
    urlpatterns = (
        url(r'', include('.myapp.urls')),
    )
}}}

.. becomes equivalent to::

{{{
    urlpatterns = (
        url(r'', include('myproject.myapp.urls')),
    )
}}}

Whilst a contrived example, this can make heavy-nested apps look far, far cleaner. For example, within `myproject.foo.foo_bar.foo_bar_baz.urls`, one only needs to include `.foo_bar_baz_qux.urls` to get to the ""next""
level, rather than the significantly more unwieldy `myproject.foo.foo_bar.foo_bar_baz.foo.bar_baz_qux.urls`."	New feature	closed	Core (URLs)	1.9	Normal	wontfix	urls		Someday/Maybe	1	0	0	0	0	0
