-2

I'm trying this pattern:

(r'^jobs/(?P<job_id>\d+)/$', job_handler)

To work with jobs/ and jobs/{job_id}, but the above expression doesn't cover the first case(jobs/), it only work if I do something like:

(r'^jobs/$', job_handler),
(r'^jobs/(?P<job_id>\d+)/$', job_handler) 
khelll
  • 23,590
  • 15
  • 91
  • 109

1 Answers1

1

You need to make the second part optional:

(r'^jobs/(?:(?P<job_id>\d+)/)?$', job_handler)
Ignacio Vazquez-Abrams
  • 776,304
  • 153
  • 1,341
  • 1,358