﻿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
20500	Flatpages catchall URLconf example that works with APPEND_SLASH	josh.23.french@…	Daniele Procida	"In https://docs.djangoproject.com/en/dev/ref/contrib/flatpages/#using-the-urlconf the catchall example doesn't include a slash anywhere, so it catches all pages without a slash.

So we just need to add a slash. (inside the match parenthesis)
{{{
# Your other patterns here
urlpatterns += patterns('django.contrib.flatpages.views',
    (r'^(?P<url>.*/)$', 'flatpage'),
)
}}}"	Cleanup/optimization	closed	Documentation	dev	Normal	fixed	flatpages		Accepted	1	0	0	0	1	0
