Kaydet (Commit) a643e4d2 authored tarafından Tim Graham's avatar Tim Graham

Merge pull request #1255 from camilonova/patch-2

Made URL patterns consistent in docs/ref/contrib/flatpages.txt
...@@ -47,7 +47,7 @@ Then either: ...@@ -47,7 +47,7 @@ Then either:
3. Add an entry in your URLconf. For example:: 3. Add an entry in your URLconf. For example::
urlpatterns = patterns('', urlpatterns = patterns('',
('^pages/', include('django.contrib.flatpages.urls')), (r'^pages/', include('django.contrib.flatpages.urls')),
) )
or: or:
...@@ -74,7 +74,7 @@ There are several ways to include the flat pages in your URLconf. You can ...@@ -74,7 +74,7 @@ There are several ways to include the flat pages in your URLconf. You can
dedicate a particular path to flat pages:: dedicate a particular path to flat pages::
urlpatterns = patterns('', urlpatterns = patterns('',
('^pages/', include('django.contrib.flatpages.urls')), (r'^pages/', include('django.contrib.flatpages.urls')),
) )
You can also set it up as a "catchall" pattern. In this case, it is important You can also set it up as a "catchall" pattern. In this case, it is important
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment