It looks like you've configured the built-in admin at "/admin/", and
you're defining your custom URLs *later* in the list of URL patterns.
This means that the admin's URL configuration will see
"/admin/display/12/" and assume it's supposed to route to its view for
an app named "display" and a model named "12". This clearly doesn't
exist, which is why you're getting that error.

You have three options:
* Change the URL you'd like "show_ticket" to use, so that it doesn't
start with "/admin/"
* Change the prefix you're using for the admin
* Move your "show_ticket" pattern *above* the admin configuration, so
that yours will be found before the admin's

-Gul

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to