mst / whatsupcoming

2 stars 0 forks source link

No other view than 'upcoming' is reachable #15

Closed mst closed 12 years ago

mst commented 12 years ago

[79d22190ef4a0b89379b52a745ed215ab3566dfb] makes the upcoming view the only reachable one. The first entry in the url patterns always matches and so no other view is reachable. I will adjust the pattern to "^$" wich matches the empty url string.

url(r'^$', 'upcoming')

mst commented 12 years ago

url(r'^$', 'upcoming')

works