Suppose, this is an url which takes an argument (here, book_id) and pass the value to the views:
url(r'^/(?P<book_id>\w+)/$', 'pro.views.book', name='book'),
Is it possible for a url which takes an argument, but, if no argument is given, take a default value. If possible may be in the views too. I am sorry if this is a lame question, but I really need to know. Any help or suggestion will be grateful. Thank you