Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Can someone please explain how you can write a url pattern and view that allows optional parameters? I've done this successfully, but I always break the url template tag.

Here's what I have currently:

Pattern

(r'^so/(?P<required>\d+)/?(?P<optional>(.*))/?$', 'myapp.so')

View

def so(request, required, optional):

If I use the url template tag in this example providing both arguments, it works just fine; however, if I omit the optional argument, I get a reversing error.

How can I accomplish this?

Thanks, Pete

share|improve this question
1  
It is on the roadmap for 1.3: code.djangoproject.com/ticket/14772 – user580640 Jan 19 '11 at 12:25

6 Answers

up vote 16 down vote accepted

I generally make two patterns with a named url:

url(r'^so/(?P<required>\d+)/$', 'myapp.so', name='something'),
url(r'^so/(?P<required>\d+)/(?P<optional>.*)/$', 'myapp.so', name='something_else'),
share|improve this answer
2  
Yes, this is the usual way to do it. The URL-reverser has only limited smarts about regexes (it doesn't implement a full regex parser), and it can't handle optional parts. You are free to use the full power of regexes in your URL patterns, but then you give up URL reversing. – Carl Meyer Aug 30 '09 at 14:06
Thanks, this is what I was looking for. Was surprised to learn I needed two separate URLs. – slypete Sep 2 '09 at 6:23
2  
Nice answer. But a bit depressing... – Joe Nov 18 '11 at 0:38
See here for another way to do this (do not know which versions of Django this approach is compatible with - I use 1.4 though): gist.github.com/1028897 – seafangs Nov 8 '12 at 18:39

Django urls are polymorphic:

url(r'^so/(?P<required>\d+)/$', 'myapp.so', name='sample_view'),
url(r'^so/(?P<required>\d+)/(?P<optional>.*)/$', 'myapp.so', name='sample_view'),

its obious that you have to make your views like this:

def sample_view(request, required, optional = None):

so you can call it with the same name and it would work work url resolver fine. However be aware that you cant pass None as the required argument and expect that it will get you to the regexp without argument:

Wrong: {% url sample_view required optional %} {% comment %} this is wrong! {% endcomment %}

Correct:

{% if optional %}
    {% url sample_view required optional %}
{% else %}
    {% url sample_view required %}
{% endif %}

I dont know whether this is documented anywhere - I have discovered it by accident - I forgot to rewrite the url names and it was working anyway :)

share|improve this answer

Others have demonstrated the way to handle this with two separate named URL patterns. If the repetition of part of the URL pattern bothers you, it's possible to get rid of it by using include():

url(r'^so/(?P<required>\d+)/', include('myapp.required_urls'))

And then add a required_urls.py file with:

url(r'^$', 'myapp.so', name='something')
url(r'^(?P<optional>.+)/$', 'myapp.so', name='something_else')

Normally I wouldn't consider this worth it unless there's a common prefix for quite a number of URLs (certainly more than two).

share|improve this answer
Thanks Carl, this looks like it will come in handy too. – slypete Sep 2 '09 at 6:23

Why not have two patterns:

(r'^so/(?P<required>\d+)/(?P<optional>.*)/$', view='myapp.so', name='optional'),
(r'^so/(?P<required>\d+)/$', view='myapp.so', kwargs={'optional':None}, name='required'),
share|improve this answer
It doesn't matter which order you put these URL patterns in. They both are bounded with $ at the end, so there can be no ambiguity. There are, of course, similar situations where it would matter (if the shorter pattern were unbounded, for instance). – Carl Meyer Aug 30 '09 at 14:04
Hmmmm. Will edit. – hughdbrown Aug 30 '09 at 15:02

in views.py you do simple thing.

def so(request, required, optional=None): 

And when you dont get optional param in url string it will be None in your code.

Simple and elegant :)

share|improve this answer

For anyone who is still having this problem. I use Django 1.5 and

I use:

urls.py url(r'^(?P\d+)/start/+(?P\d+)?', views.restart, name='restart')

Then when I want to have the two urls

/1/start/2 and /1/start

I use:

{% url ':start' app.id %} {% url ':start' app.id server.id %}

This will create the urls

/1/start/2 and /1/start/ <- notice the slash.

If you create a url manually you have to keep the / in mind.

I hoop this helps anyone!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.