Your last example is near the typical solution. You could pass as second element of the "url-tuples" a callable object e.g. a view.
from django.conf.urls.defaults import * import views urlpatterns = patterns('', (r'^(?P<city_slug>[a-z0-9_-]+)/$', views.view_city), (r'^(?P<city_slug>[a-z0-9_-]+)/category/(?P<category_slug>[a- z0-9_-]+)/$', views.view_category), (r'^(?P<city_slug>[a-z0-9_-]+)/all-categories/$', views.view_category_list), ) If you do that, the first argument of patterns() have no semantical meaning anymore. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---