On Fri, Jul 18, 2014 at 2:54 PM, ngangsia akumbo <[email protected]> wrote: > > It is still breaking >
You should explain precisely what is still breaking. "Still breaking" doesn't tells anyone who is helping you what is going wrong. In earlier emails, you are going to the URL "/event/", but in your urls.py you specify the url as having a slug before the "/event/". So, "/foo/event/" would match, and would pass slug='foo' to your view function. Your url has no slug and so doesn't match. The strings have to match exactly the regular expression. Cheers Tom -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/django-users. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAFHbX1Juov9AttV0R_gvBrg0sOUNnXgvRcN%3DoX9C6MxnE69oug%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.

