We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8bf3bb7 commit 66934bbCopy full SHA for 66934bb
README.markdown
@@ -71,11 +71,11 @@ from project.apps.macrosurl import url
71
urlpatterns = patterns(
72
'yourapp.views',
73
url('^:category_slug/$', 'category'),
74
- url('^:category_slug/:product_slug/$', 'category_product'),
75
- url('^:category_slug/:product_slug/:variant_id$', 'category_product_variant'),
76
- url('^news/$', 'news'),
77
- url('^news/:year/:month/:day$', 'news_date'),
78
- url('^news/:slug$', 'news_entry'),
+ url(':category_slug/:product_slug/', 'category_product'),
+ url(':category_slug/:product_slug/:variant_id', 'category_product_variant'),
+ url('news/', 'news'),
+ url('news/:year/:month/:day$', 'news_date'),
+ url('news/:slug$', 'news_entry'),
79
url('^order/:id$', 'order'),
80
)
81
```
0 commit comments